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

  

posted @ 2013-11-13 11:11  七年之后  阅读(160)  评论(0编辑  收藏  举报