1.要求
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn’t matter what you leave beyond the new
length.
2.代码
class Solution {
public:
int removeElement(vector<int>& nums, int val) {
if(nums.size() <= 0) return 0;
vector<int>::iterator itr = nums.begin();
for(int i = 0; i < nums.size(); i++){
if(nums[i] == val){
nums.erase(itr+i);
i--;
}
}
return nums.size();
}
};