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

php实现二分查找算法

WBOY
Libérer: 2016-07-25 08:43:03
original
750 Les gens l'ont consulté
  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


Étiquettes associées:
source:php.cn
Déclaration de ce site Web
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
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal