[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;
    }
};

 

posted @ 2014-06-18 21:35  Xylophone  Views(117)  Comments(0Edit  收藏  举报