求一个java的二分查找的程序代码
发布网友
发布时间:2022-05-03 05:37
我来回答
共2个回答
热心网友
时间:2023-10-11 11:21
//你那程序太难改了,每个方法都单职责啊
public class Test6 {
//二分查找
public static int findPos(int[] a,int key) {
int start=0;
int end=a.length-1;
int temp=0;
while(start<end){
int mid=(start+end)/2;
if(key>a[mid]){
start=mid+1;
temp=start;
}else if(key<a[mid]){
end=mid-1;
temp=end;
}else {
return mid;
}
}
return temp;
}
public static void main(String[] args) {
int[]array={1,4,6,7,10,11,23,78};
System.out.println(findPos(array, 0));
}
}
热心网友
时间:2023-10-11 11:21
Arrays.binarySearch (1, 1);追问不好意思,不太明白你的意思。。。
追答Arrays类的系统函数,里面的源代码就是二分查找法
热心网友
时间:2023-10-11 11:21
//你那程序太难改了,每个方法都单职责啊
public class Test6 {
//二分查找
public static int findPos(int[] a,int key) {
int start=0;
int end=a.length-1;
int temp=0;
while(start<end){
int mid=(start+end)/2;
if(key>a[mid]){
start=mid+1;
temp=start;
}else if(key<a[mid]){
end=mid-1;
temp=end;
}else {
return mid;
}
}
return temp;
}
public static void main(String[] args) {
int[]array={1,4,6,7,10,11,23,78};
System.out.println(findPos(array, 0));
}
}
热心网友
时间:2023-10-11 11:21
Arrays.binarySearch (1, 1);追问不好意思,不太明白你的意思。。。
追答Arrays类的系统函数,里面的源代码就是二分查找法