SYCh 发表于 2019-8-28 19:22:44

移动零

给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。

示例:

输入:
输出:
说明:

必须在原数组上操作,不能拷贝额外的数组。
尽量减少操作次数。

class Solution {
    public void moveZeroes(int[] nums) {
      int curr=0;
      int p=1;
      while(p<nums.length){
            if(nums==0){
                nums=nums;
                nums=0;
            }
            if(nums!=0)
                curr++;
            p++;
      }
    }
}
页: [1]
查看完整版本: 移动零