[Leetcode] Move Zeros

Posted Phoebe815

tags:

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

Given an array nums, write a function to move all 0\'s to the end of it while maintaining the relative order of the non-zero elements.

For example, given nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0].

Note:

  1. You must do this in-place without making a copy of the array.
  2. Minimize the total number of operations.

 

1. 首先想到的肯定是冒泡排序类似的算法。

2. 如果不用in-place的话,可以重新新建一个array,那所有的东西都很简单了。 ---> 看了答案。。。不用新建一个array, 直接用一个pointer来做就好

3. 还可以用Two Pointers来做。

以上是关于[Leetcode] Move Zeros的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 283 Move Zeros

[刷题] LeetCode 283 Move Zeros

leetcode 283 Move Zeros

leetcode 之 move zeros

leetcode 之 move zeros

leetcode 283 Move Zeros; 27 Remove Elements; 26