欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++实现LeetCode(35.搜索插入位置)

程序员文章站 2023-01-16 13:08:43
[leetcode] 35. search insert position 搜索插入位置given a sorted array and a target value, return the inde...

[leetcode] 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.

example 1:

input: [1,3,5,6], 5
output: 2

example 2:

input: [1,3,5,6], 2
output: 1

example 3:

input: [1,3,5,6], 7
output: 4

example 4:

input: [1,3,5,6], 0
output: 0

这道题基本没有什么难度,实在不理解为啥还是 medium 难度的,完完全全的应该是 easy 啊(貌似现在已经改为 easy 类了),三行代码搞定的题,只需要遍历一遍原数组,若当前数字大于或等于目标值,则返回当前坐标,如果遍历结束了,说明目标值比数组中任何一个数都要大,则返回数组长度n即可,代码如下:

解法一:

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();
    }
};

解法二:

class solution {
public:
    int searchinsert(vector<int>& nums, int target) {
        if (nums.back() < target) return nums.size();
        int left = 0, right = nums.size();
        while (left < right) {
            int mid = left + (right - left) / 2;
            if (nums[mid] < target) left = mid + 1;
            else right = mid;
        }
        return right;
    }
};

到此这篇关于c++实现leetcode(35.搜索插入位置)的文章就介绍到这了,更多相关c++实现搜索插入位置内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!