首页 > 其他 > 详细

Leetcode 35 Search insert position

时间:2016-01-20 20:30:52      阅读:162      评论:0      收藏:0      [点我收藏+]

Q:

A: binary search, pay attention to boundary cases

 

java version 1

public class Solution {
    public int searchInsert(int[] nums, int target) {
        if (nums == null || nums.length == 0) return 0;
        int start = 0;
        int end = nums.length-1;
        while(start +1 < end){
            int mid = start + (end - start) / 2;
            if (nums[mid] == target){
                return mid;
            }else if (nums[mid] < target){
                start = mid;
            }else{
                end = mid;
            }
        }
        if (nums[start] >= target) return start;
        else if (target <= nums[end]) return end;
        else return end+1;  
    }
}

  

 

Leetcode 35 Search insert position

原文:http://www.cnblogs.com/nobody2somebody/p/5146216.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!