2019-03-09 algorithm leetcode -moveZeroes Leetcode题解之 —— 移动零 思路 思路一 迭代法 尾遍历 如果等于0 splice剔除本数 push0 题解 12345678910111213/** * @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); } }}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/03/09/leetcode-moveZeroes/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。