example in php added (#26864)

* example in php added

php example of linear search added

* exmaple in php modified (#4)

exmaple in php modified

* example in php modified (#6)
This commit is contained in:
Kabir Hossain
2019-02-14 06:20:15 +06:00
committed by Randell Dawson
parent e0d97ea3e1
commit 2620693b20

View File

@ -133,7 +133,27 @@ int linearSearch(int[] arr, int element)
} }
``` ```
### Example in PHP
```php
function linear_search($arr=[],$num=0)
{
$n = count($arr);
for( $i=0; $i<$n; $i++){
if($arr[$i] == $num)
return $i;
}
// Item not found in the array
return -1;
}
$arr = array(1,3,2,8,5,7,4,0);
print("Linear search result for 2: ");
echo linear_search($arr,2);
```
## Global Linear Search ## Global Linear Search
What if you are searching the multiple occurrences of an element? For example you want to see how many 5s are in an array. What if you are searching the multiple occurrences of an element? For example you want to see how many 5s are in an array.