[Leetcode] 283. Move Zeroes

Posted zebinlin

tags:

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

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.

Example:

Input: [0,1,0,3,12]
Output: [1,3,12,0,0]
class Solution {
    // 把0移动到最后 <==> 把非0的移动到前面
	public void moveZeroes(int[] nums) {
		// 记录移动了一个非零元素到前面
		// 当移动了move个非零元素到前面时,说明前move个都是移动过的,此时再往前移动时应放在 move位置,才不会破坏顺序
		int move = 0;
		// 记录遍历到第几个
		int index = 0;
		while (index < nums.length) {
			// 如果nums[index]!=0,说明它需要移动到move位置上,并且move+1
            // 除了第一次循环以外,move位置的元素一定是0,因为循环到index时,遇到了move个非0,全移动到最前面了,所以move位置肯定是0
			if (nums[index] != 0) {
				int temp = nums[move];
				nums[move] = nums[index];
				nums[index] = temp;
				move++;
			}
			index++;
		}
	}  
}

  

  

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

LeetCode283:Move Zeros

leetcode 283. Move Zeroes

Move Zeroes

LeetCode 283. Move Zeroes

Leetcode 283. Move Zeroes

Leetcode刷题记录[python]——283 Move Zeroes