【LeetCode】35. Search Insert Position

来源:互联网 发布:存货管理与优化 编辑:程序博客网 时间:2024/05/17 02:17

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

  • Difficulty: Medium
算法是二分查找,注意边界的判断,终止条件的判断,每次上界和下界的更新

时间复杂度O(logn)

class Solution {public:    int searchInsert(vector<int>& nums, int target) {        int low=0,high=nums.size();        if(high==0) return 0;        high=high-1;        while(low<=high)        {            int mid=(low+high)/2;            if(nums[mid]==target)   return mid;            else if(nums[mid]<target)   low=mid+1;            else    high=mid-1;        }        return low;    }};



0 0