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

leetcode 35. Search Insert Position

时间:2016-08-06 23:29:28      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

 

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.

Here are few examples.
[1,3,5,6], 5 → 2
[1,3,5,6], 2 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0

 

分析:

给出一个数组和一个target数字,找到数组中能插入该数字的位置,

这道题是要找到数组中第一个大于等于target的位置。

 

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

 

leetcode 35. Search Insert Position

标签:

原文地址:http://www.cnblogs.com/iwangzheng/p/5745041.html

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