Remove Element leetcode

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.

Subscribe to see which companies asked this question

利用双指针思想

int removeElement(vector<int>& nums, int val) {
    int slow = 0, fast = 0;
    while (fast < nums.size())
    {
        if (nums[fast] != val)
            nums[slow++] = nums[fast];
        fast++;
    }
    return slow;
}
原文地址:https://www.cnblogs.com/sdlwlxf/p/5100102.html