283.移动零
Posted lanpang9661
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了283.移动零相关的知识,希望对你有一定的参考价值。
2020-04-21
移动零
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非
零元素的相对顺序。
题解:
思路1:双指针
/** * @param {number[]} nums * @return {void} Do not return anything, modify nums in-place instead. */ var moveZeroes = function (nums) { let i = 0, j = nums.length - 1; // 双指针 while (i < j) { if (nums[i] === 0) { // 如果i下标等于0 那么删掉这一项 nums.splice(i, 1); nums.push(0); // 删掉后在末尾补0 j--; // 右指针左移一位 } else { i++; // 不等于0右指针右移1位 } } return nums; };
以上是关于283.移动零的主要内容,如果未能解决你的问题,请参考以下文章