solution.md 2.1 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3 4 5
# 搜索插入位置
以下错误的选项是?
## aop
### before
```cpp
每日一练社区's avatar
每日一练社区 已提交
6 7
#include <bits/stdc++.h>
using namespace std;
每日一练社区's avatar
每日一练社区 已提交
8 9 10
```
### after
```cpp
每日一练社区's avatar
每日一练社区 已提交
11 12 13 14 15 16 17 18
int main()
{
    Solution sol;
    int res;
    vector<int> nums{1, 3, 5, 6};
    int target = 5;

    res = sol.searchInsert(nums, target);
每日一练社区's avatar
每日一练社区 已提交
19

每日一练社区's avatar
每日一练社区 已提交
20 21 22
    cout << res;
    return 0;
}
每日一练社区's avatar
每日一练社区 已提交
23 24 25 26
```

## 答案
```cpp
每日一练社区's avatar
每日一练社区 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
class Solution
{
public:
    int searchInsert(vector<int> &nums, int target)
    {

        int len = nums.size();
        if (target <= nums[0])
            return 0;

        for (int i = 0; i < len; i++)
        {
            if (nums[i] == target)
                return i - 1;
            else if (target < nums[i])
                return i + 1;
        }
每日一练社区's avatar
每日一练社区 已提交
44

每日一练社区's avatar
每日一练社区 已提交
45 46 47
        return len;
    }
};
每日一练社区's avatar
每日一练社区 已提交
48 49 50 51 52
```
## 选项

### A
```cpp
每日一练社区's avatar
每日一练社区 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
class Solution
{
public:
    int searchInsert(vector<int> &nums, int target)
    {
        int lo = -1;
        int hi = nums.size();
        while (lo + 1 < hi)
        {
            int mid = lo + (hi - lo) / 2;
            if (target > nums[mid])
            {
                lo = mid;
            }
            else
            {
                hi = mid;
            }
        }
        return hi;
    }
};
每日一练社区's avatar
每日一练社区 已提交
75 76 77 78
```

### B
```cpp
每日一练社区's avatar
每日一练社区 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
class Solution
{
public:
    int searchInsert(vector<int> &nums, int target)
    {
        int len = nums.size();
        if (len == 0)
            return 0;
        for (int i = 0; i < len; i++)
        {
            if (nums[i] >= target)
                return i;
        }
        return len;
    }
};
每日一练社区's avatar
每日一练社区 已提交
95 96 97 98
```

### C
```cpp
每日一练社区's avatar
每日一练社区 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
class Solution
{
public:
    int searchInsert(vector<int> &nums, int target)
    {
        int mid = 0;
        int head = 0;
        int last = nums.size() - 1;
        while (head < last)
        {
            mid = (last - head) / 2 + head;
            if (target > nums[mid])
            {
                head = mid + 1;
            }
            else if (target < nums[mid])
            {
                last = mid - 1;
            }
            else
                return mid;
        }
        if (target <= nums[head])
            return head;
        return head + 1;
    }
};
每日一练社区's avatar
每日一练社区 已提交
126
```