首页 > 代码库 > [LeetCode] Remove Element [20]

[LeetCode] Remove Element [20]

题目

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.

原题链接(点我)

解题思路

给一个数组和一个数字,移除该数字在数组中所有出现的地方。
这是一个非常简单的题目,应该不用多说,读懂题目,一次AC。

代码实现

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        if(A==NULL || n<=0) return 0;
        int start = 0;
        for(int i=0; i<n; ++i){
            if(A[i] != elem){
                A[start++] = A[i];
            }
        }
        return start;
    }
};

如果你觉得本篇对你有收获,请帮顶。

另外,我开通了微信公众号--分享技术之美,我会不定期的分享一些我学习的东西.
你可以搜索公众号:swalge 或者扫描下方二维码关注我

(转载文章请注明出处: http://blog.csdn.net/swagle/article/details/29214323 )