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

Search Insert Position

时间:2015-04-14 07:17:46      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

二分,多设立一个返回条件变可以继承二分法

ublic class Solution {
    public int searchInsert(int[] A, int target) {
        
        int l = 0, r = A.length-1;
        while(l<=r){
            int m = (l+r)/2;
            if(A[m]==target) return m;
            if(m+1<A.length && A[m]< target && A[m+1]>target){
                    return m+1;
            }
            if(A[m]< target){
                l = m+1;
            }else
                r =m-1;
        }
        return l;
    }
}

参考 http://fisherlei.blogspot.com/2013/01/leetcode-search-insert-position.html

Search Insert Position

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4423897.html

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