[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 len = n;
        for(int i = n-1; i>=0;i--){
            if(A[i] == elem){
                if(i!=len-1)
                   A[i] = A[len-1];
                len--;
            }//end if
        }//end for
        return len;
    }
};
原文地址:https://www.cnblogs.com/Xylophone/p/3795406.html