23 - Remove Element

来源:互联网 发布:两年经验的程序员工资 编辑:程序博客网 时间:2024/06/16 16:17

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.


solution: 同22题类似吧,都是简单题,一个循环搞定


class Solution {public:    int removeElement(int A[], int n, int elem) {        // Start typing your C/C++ solution below        // DO NOT write int main() function        if(A == NULL||n <= 0)            return n;                    int idx = 0;        int ridx = 0;                for(idx; idx < n; idx++)        {            if( A[ idx ] != elem )            {                A[ ridx ] = A[ idx ];                ridx ++;            }        }                return ridx;    }};