java基础之二分查找

2021-04-02 19:29

阅读:544

标签:system   ati   返回   public   查找   each   开始   位置   start   

一、

public class BinarySeachTest {
public static void main(String[] args) {
    int[] arr = new int[]{22,54,88,97,105,112};
    System.out.println(binarySeach(arr, 112));
}
/**
 *
 * @return 返回传入的value在数组位置
 */
public static int binarySeach(int[] num,int value){
    int start=0;  //数组的开始下标
    int end =num.length-1;  //数组的结尾下标
    while(startvalue){
            end=middle-1;
        }else if(num[middle]

}

java基础之二分查找

标签:system   ati   返回   public   查找   each   开始   位置   start   

原文地址:https://www.cnblogs.com/jock766/p/13473113.html


评论


亲,登录后才可以留言!