Résumé
( ) =
=
()
(+)
(+)
(+)
= = = =
++
= =
public static int binarySearch(int[] a,int key) {
int low = 0;
int high =a.length - 1;
while (low <= high) {
int mid = (low +high) / 2;
int midVal =a[mid];
if (midVal <key)
low =mid + 1
else if (midVal >key)
high =mid - 1;
else
return mid;// key found
}
return -(low + 1); // key not found.
}
int mid = (low +high) / 2;
int
int mid =low + ((high -low) / 2);
=
− +
=/
√ √
< +
( )= ( )<+
( )= = ( )
( )=( )
( ) ×( )
( ) ( )
=  
=(+)( +)=+(+)+
⌊ ⌋
1 / 18 100%
La catégorie de ce document est-elle correcte?
Merci pour votre participation!

Faire une suggestion

Avez-vous trouvé des erreurs dans linterface ou les textes ? Ou savez-vous comment améliorer linterface utilisateur de StudyLib ? Nhésitez pas à envoyer vos suggestions. Cest très important pour nous !