[leetcode] Remove Element


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.

简单题,与上一题Remove Element in Sorted Array类似

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

Untitled

 

Leave a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.