[LeetCode]Remove Element

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.

思考:前后指针。

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        int i=0,j=n-1;
        while(i<=j)
        {
            if(A[i]==elem)
            {
                swap(A[i],A[j]);
                j--;
            }
            else i++;
        }
        return j+1;
    }
};

  

原文地址:https://www.cnblogs.com/Rosanna/p/3420991.html