Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,783 answers

573 users

How to perform linear search (sequential search) in PHP

1 Answer

0 votes
function Linear_Search($arr, $data) {
	$size = count($arr);
	
	for ($i = 0; $i < $size; $i++) {
		if ($data == $arr[$i]) return $i;
	}

	return -1;
}


$arr = array(4, 9, 78, 99, 10, 1200, 300);

$index = Linear_Search($arr, 99);

echo $index . "\n";




/*
run:

3

*/

 





answered Jan 1, 2022 by avibootz
edited Jan 1, 2022 by avibootz

Related questions

1 answer 105 views
1 answer 41 views
1 answer 47 views
1 answer 54 views
...