国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > [LeetCode] 027. Remove Element (Easy) (C++)

[LeetCode] 027. Remove Element (Easy) (C++)

来源:程序员人生   发布时间:2015-03-19 08:29:20 阅读次数:3102次

索引:[LeetCode] Leetcode 题解索引 (C++/Java/Python/Sql)
Github: https://github.com/illuz/leetcode


027. Remove Element (Easy)

链接

题目:https://oj.leetcode.com/problems/remove-element/
代码(github):https://github.com/illuz/leetcode

题意

删除1个数组里值为 elem 的所有数。

分析

用两个指针,1个为可放位置的指针,1个为扫描指针。
由于不难,Java 和 Python 的做法都和 C++ 1样,这里就不给出了。

代码

C++:


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

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生