算法-双指针-283. 移动零

283. 移动零

说明

给定一个数组 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;
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值