码迷,mamicode.com
首页 > 其他好文 > 详细

二分查找发

时间:2016-02-18 21:16:41      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

public class sf {

    /**
     * @param args
     */
    public static void main(String[] args) {
        int[] arr = { 2, 5, 9, 56 };
        int a = halfserach(arr, 56);
        // TODO Auto-generated method stub

        System.out.println(a);

    }

    public static int halfserach(int[] arr, int tagert) {
        int max = arr.length - 1;
        int min = 0;
        int mid = (max + min) / 2;
        while (true)

        {
            if (tagert > arr[mid]) {
                min = mid + 1;
            } else if (tagert < arr[mid]) {
                max = mid - 1;

            }

            else {
                return mid;
            }
            if (max < min) {

                return -1;
            }
            mid = (max + min) / 2;

        }

    }

}

 

二分查找发

标签:

原文地址:http://www.cnblogs.com/xh0626/p/5199133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!