LeetCode--Remove Element

Posted mfmdaoyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode--Remove Element相关的知识,希望对你有一定的参考价值。

这个题目没有动手实践,仅仅是想了个思路。结果一看讨论区的代码瞬间感觉,我想的太复杂了。ps:有点想不明确,既然是要移除元素。为何不留下一个不含删除元素的纯净数组。

题目:

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. 


讨论区解决的方法:

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






以上是关于LeetCode--Remove Element的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] Remove Element

leetCode- Remove Element

[Leetcode] remove element 删除元素

LeetCode--Remove Element

[LeetCode]Remove Element

leetcode Remove Element(easy) /java