Leetcode-35 Search Insert Position

Posted 北冥有鱼,南冥有猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-35 Search Insert Position相关的知识,希望对你有一定的参考价值。

#35.    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

题解:因为题目已经给出数组是排序过的,所以直接遍历数组,找到大于或者等于目标值的那个数组元素下标,直接返回即可,如果目标值大于所有数组中的值,则直接返回数组的size即可。

class Solution {
public:
    int searchInsert(vector<int>& nums, int target) {
        for(int i=0;i<nums.size();i++)
        {
            if(nums[i]>=target)
            {
                return i;
            }
        }
        return nums.size();
        
    }
};

 

以上是关于Leetcode-35 Search Insert Position的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode:35. Search Insert Position

[LeetCode]35. Search Insert Position

Leetcode-35 Search Insert Position

[leetcode][35] Search Insert Position

Leetcode 35. Search Insert Position

Leetcode 35. Search Insert Position