Leetcode题解之 —— 移动零

思路


思路一

迭代法

  • 尾遍历
  • 如果等于0
    • splice剔除本数
    • push0

题解


1
2
3
4
5
6
7
8
9
10
11
12
13
/**
* @param {number[]} nums
* @return {void} Do not return anything, modify nums in-place instead.
*/
var moveZeroes = function(nums) {
// TODO solution 1
for (let i = nums.length - 1; i >= 0; i--) {
if (nums[i] === 0) {
nums.splice(i, 1);
nums.push(0);
}
}
};