首頁 >後端開發 >php教程 >php實作二分查找演算法

php實作二分查找演算法

WBOY
WBOY原創
2016-07-25 08:43:03756瀏覽
  1. // $low and $high have to be integers
  2. function BinarySearch( $array, $key, $low, $high )
  3. {
  4. if( $low > $high ) // termination case
  5. {
  6. return -1;
  7. }
  8. $middle = intval( ( $low $high )/2 ); // gets the middle of the array
  9. if ( $array[$middle] == $key ) // if the middle is our key
  10. {
  11. return $middle;
  12. }
  13. elseif ( $key < $array[$middle] ) // our key might be in the left sub-array
  14. {
  15. return BinarySearch( $array, $key, $low, $middle-1 );
  16. }
  17. return BinarySearch( $array, $key, $middle 1, $high ); // our key might be in the right sub-array
  18. }
复制代码

php


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn