Maison >développement back-end >tutoriel php >php实现二分查找算法

php实现二分查找算法

WBOY
WBOYoriginal
2016-07-25 08:43:03756parcourir
  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 {
  14. return BinarySearch( $array, $key, $low, $middle-1 );
  15. }
  16. return BinarySearch( $array, $key, $middle+1, $high ); // our key might be in the right sub-array
  17. }
复制代码

php


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn