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 19
int main()
{
    Solution sol;
    int res;
    vector<int> nums{0, 1, 2, 2, 3, 0, 4, 2};
    res = sol.removeElement(nums, 2);
    cout << res;
    return 0;
}
每日一练社区's avatar
每日一练社区 已提交
20 21 22 23
```

## 答案
```cpp
每日一练社区's avatar
每日一练社区 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
class Solution
{
public:
    int removeElement(vector<int> &nums, int val)
    {
        int count = 0;
        for (int i = 0; i < nums.size(); i++)
        {
            if (nums[i] != val)
            {
                nums[count++] = nums[i];
            }
        }
        return count;
    }
};
每日一练社区's avatar
每日一练社区 已提交
40 41 42 43 44
```
## 选项

### A
```cpp
每日一练社区's avatar
每日一练社区 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
class Solution
{
public:
    int removeElement(vector<int> &nums, int val)
    {
        int i = 0;
        for (int j = 0; j < nums.size(); j++)
        {
            if (nums[j] != val)
            {
                nums[i] = nums[j];
                i++;
            }
        }
        return i;
    }
};
每日一练社区's avatar
每日一练社区 已提交
62 63 64 65
```

### B
```cpp
每日一练社区's avatar
每日一练社区 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
class Solution
{
public:
    int removeElement(vector<int> &nums, int val)
    {
        int n = nums.size();
        int i = 0;
        while (i < n)
        {
            if (nums[i] == val)
            {
                nums[i] = nums[n - 1];
                n--;
            }
            else
                i++;
        }
        return n;
    }
};
每日一练社区's avatar
每日一练社区 已提交
86 87 88 89
```

### C
```cpp
每日一练社区's avatar
每日一练社区 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
class Solution
{
public:
    int removeElement(vector<int> &nums, int val)
    {
        int tmp_len = nums.size();

        if (tmp_len == 0)
            return 0;
        else
        {
            for (int ii = 1; ii < nums.size(); ii++)
            {
                if (nums[ii] == val)
                    tmp_len = tmp_len - 1;
            }

            for (int i = 0; i < nums.size(); i++)
            {
                if (nums[i] == val)
                {
                    for (int j = i; j < nums.size(); j++)
                    {
                        if (nums[j] != val)
                        {
                            nums[j] = nums[i];
                        }
                    }
                }
            }
每日一练社区's avatar
每日一练社区 已提交
120

每日一练社区's avatar
每日一练社区 已提交
121 122 123 124
            return tmp_len;
        }
    }
};
每日一练社区's avatar
每日一练社区 已提交
125
```