leetcode 35. 搜索插入位置

Posted 嗯我想想

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 35. 搜索插入位置相关的知识,希望对你有一定的参考价值。

35. 搜索插入位置

思路分析:
二分模版题。

AC代码:

class Solution 
public:
    int searchInsert(vector<int>& nums, int target) 
        if(nums.size() == 1) 
            if(nums[0] < target) return 1;
            else return 0;
        
        int l = 0, r = nums.size() - 1;
        while(l < r) 
            int mid = (l + r) >> 1;
            if(nums[mid] >= target)  r = mid;
            else l = mid + 1;
        
        if(nums[r] < target)
            return r + 1;
        else
            return r;
    
;

以上是关于leetcode 35. 搜索插入位置的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 35. 搜索插入位置

leetcode-35.搜索插入位置

leetcode 35. 搜索插入位置

LeetCode 35 搜索插入位置

LeetCode 35 搜索插入位置

leetcode35.搜索插入位置(遍历并进行大小判断)