索引:[LeetCode] Leetcode 题解索引 (C++/Java/Python/Sql)
Github:
https://github.com/illuz/leetcode
题目:https://oj.leetcode.com/problems/remove-element/
代码(github):https://github.com/illuz/leetcode
删除1个数组里值为 elem 的所有数。
用两个指针,1个为可放位置的指针,1个为扫描指针。
由于不难,Java 和 Python 的做法都和 C++ 1样,这里就不给出了。
C++:
上一篇 PHP知识点与小结