题目
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
请注意 ,必须在不复制数组的情况下原地对数组进行操作。
解题
function(nums) {
let count = 0;
for(let i=0;i<nums.length;i++){
if(nums[i] === 0){
nums.splice(i,1);
i--;
count++;
}
}
for(let i=0;i<count;i++){
nums.push(0);
}
};
解析
题目需要在原数组上操作,删除数组的方法splice,使用count记录删除0的个数,最后再末尾添加。