移动零
题目描述
给定一个数组 nums
,编写一个函数将所有 0
移动到数组的末尾,同时保持非零元素的相对顺序。
示例:
SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。输入: [0,1,0,3,12]
输出: [1,3,12,0,0]
说明:
- 必须在原数组上操作,不能拷贝额外的数组。
- 尽量减少操作次数。
分析
使用使用两个索引lastIndex
和curIndex
,curIndex
从后向前遍历直到其元素为0
,然后根据lastIndex
与curIndex
之间的差值,将元素前移。
贴出代码
class Solution {
public void moveZeroes(int[] nums) {
int curIndex = nums.length - 1;
int lastIndex = nums.length - 1;
//int count = 0;
while(curIndex >= 0) {
if(nums[curIndex] == 0) {
int count = lastIndex - curIndex;
for(int i = 0;i < count; i++) {
nums[curIndex + i] = nums[curIndex + i + 1];
}//元素往前移动
nums[lastIndex] = 0;
lastIndex--;
}
curIndex--;
}
}
}

更多精彩