说明
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
请注意 ,必须在不复制数组的情况下原地对数组进行操作。
示例 1:
输入: nums = [0,1,0,3,12]
输出: [1,3,12,0,0]
示例 2:
输入: nums = [0]
输出: [0]
提示:
1 <= nums.length <= 104
-231 <= nums[i] <= 231 - 1
进阶:你能尽量减少完成的操作次数吗?
题解思路
双指针 & 简单模拟
- 使用两个指针遍历数组
- 两个指针相等时一起向右移动
- 当左指针指向0时,右指针继续向前遍历,直到指向非0元素,交换左右指针元素
- 随后左指针继续向右,右指针不动
- 重复该过程,直到右指针遍历完数组
- 简单模拟即可
双指针 & 填充0
- 使用两个指针遍历数组
- 左指针为写指针,右指针为读指针
- 当左指针指向0时,右指针继续向前遍历,直到指向非0元素
- 直接把右指针指向的元素赋值给左指针
- 左右都向右一位,重复该过程
- 右指针遍历完成后,数组中所有非零元素都已经被放在了左指针前
- 随后左指针继续向右,将剩余位数都填充0即可
Code
双指针 & 简单模拟
class Solution {
public void moveZeroes(int[] nums) {
int left = 0, right = 0;
int len = nums.length;
while(right < len){
if (nums[left] == 0){
while(nums[right] == 0) {
right++;
if (right >= len) return;
}
change(nums, left, right);
} else if (left == right){
right++;
}
left++;
}
}
private void change(int[] nums, int i, int j){
int tem = nums[i];
nums[i] = nums[j];
nums[j] = tem;
}
}
双指针 & 填充0
class Solution {
public void moveZeroes(int[] nums) {
int left = 0, right = 0;
int len = nums.length;
while(right < len){
while(right < len && nums[right] == 0) right++;
if (right == len) break;
if (right == left) {
left++;
right++;
} else {
nums[left++] = nums[right++];
}
}
while(left < len){
nums[left++] = 0;
}
}
}