class Solution {
public:
int removeElement(vector<int>& v, int val) {
for (auto it = v.begin(); it != v.end(); it++) {
if (*it == val) { // 条件语句
v.erase(it); // 移除他
it--; // 让该迭代器指向前一个
}
}
return v.size();
}
};

vector中删除某个指定元素_c++


vector中删除某个指定元素_迭代器_02