[LeetCode] 283. Move Zeroes
Posted aaronliu1991
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 283. Move Zeroes相关的知识,希望对你有一定的参考价值。
题意很直观,将数组中所有0移动到数组的末端。要求必须in-place做。例子如下
Example:
Input:[0,1,0,3,12]
Output:[1,3,12,0,0]
思路是给一个cur指针,遍历数组。当数组遇到非0的数字的时候,就放到cur的位置,cur接着往后走。如果扫描完整个数组cur的位置没有到达数组末尾,后面的位置用0补齐。
时间O(n)
空间O(1)
1 /** 2 * @param {number[]} nums 3 * @return {void} Do not return anything, modify nums in-place instead. 4 */ 5 var moveZeroes = function(nums) { 6 let cur = 0; 7 for (let i = 0; i < nums.length; i++) { 8 if (nums[i] !== 0) { 9 nums[cur] = nums[i]; 10 cur++; 11 } 12 } 13 while (cur < nums.length) { 14 nums[cur] = 0; 15 cur++; 16 } 17 };
以上是关于[LeetCode] 283. Move Zeroes的主要内容,如果未能解决你的问题,请参考以下文章