二分查找的前提是:数组有序
注意:mid的动态变化,否则出错!!!
实例代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
public class BiSearch {
public static void main(String[] args) {
new BiSearch().biFind( new int []{ 1 , 2 , 3 , 4 , 5 , 6 , 7 }, 3 );
}
public void biFind( int arr[], int y){
int start= 0 ;
int end=arr.length- 1 ;
int mid=(start+end)/ 2 ;
while (start<=end){
if (y==arr[mid]){
System.out.println( "查找成功,其下标为" +mid);
break ;
}
if (y>arr[mid]){
start=mid+ 1 ;
mid=(start+end)/ 2 ;
}
if (y<arr[mid]){
end=mid- 1 ;
mid=(start+end)/ 2 ;
}
if (start>end){
System.out.println( "查找失败" );
}
}
}
}
|
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/lfdfhl/article/details/8195067