Search Insert Position

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

 

 1 class Solution {
 2 public:
 3     int searchInsert(vector<int>& nums, int target) {
 4         int low = 0, high = nums.size() - 1;
 5         while (low <= high) {
 6             int mid = low + (high - low) / 2;
 7             if (nums[mid] == target) return mid;
 8             else if (nums[mid] > target) high = mid - 1;
 9             else low = mid + 1;
10         }   
11         return low;
12     }
13 };

 

posted @ 2016-09-19 05:18  amazingzoe  阅读(106)  评论(0编辑  收藏  举报