【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.

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.

题目大意,给出一个数字数组,要求将数组中为0的元素移到数组的尾端。并且保留非0元素的相对位置不变。要求不要复制数组并且最小化操作数。

(1)假设数组中有j个非零元素,将j个非零元素移动到数组的前j个位置;然后将n-j个元素(即为0的元素)置为0。

解法一

 

发表评论

电子邮件地址不会被公开。 必填项已用*标注