传送门:力扣移除元素
给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,写一个函数搜索 nums 中的 target,如果目标值存在返回下标,否则返回 -1。
示例 1:
输入: nums = [-1,0,3,5,9,12], target = 9
输出: 4
解释: 9 出现在 nums 中并且下标为 4
示例 2:
输入: nums = [-1,0,3,5,9,12], target = 2
输出: -1
解释: 2 不存在 nums 中因此返回 -1
提示:
你可以假设 nums 中的所有元素是不重复的。
n 将在 [1, 10000]之间。
nums 的每个元素都将在 [-9999, 9999]之间。
#define _CRT_SECURE_NO_WARNINGS 1
#include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
int removeElement(vector<int>& nums, int val) {
//快慢指针
int slowIndex = 0;
for (int fastIndex = 0; fastIndex < nums.size(); fastIndex++) {
if (nums[fastIndex] != val) {
nums[slowIndex++] = nums[fastIndex];
//快指针覆盖慢指针,在锁定到val的时候!
}
}
return slowIndex;
}
};
int main() {
Solution solution;
int a[] = { 1,2,2,4,5,3,7,8,1,0,5,7,2,4,2 };
vector<int> nums (a, a + sizeof(a) / sizeof(int));
cout << "原本长度" << sizeof(a) / sizeof(int) << endl;
cout << "之后长度" << solution.removeElement(nums, 2) << endl;
}