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) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
       int sameNum = 0,i;
       
       for(i = 0; i< n ;i++)
        {
           if(A[i] == elem)
              sameNum ++;
             else if(sameNum != 0)
               A[i-sameNum] = A[i] ;
        }          
        
        return  n - sameNum ;
    }
};

 

posted @ 2013-04-24 17:04  冰点猎手  阅读(262)  评论(0编辑  收藏  举报