题解 | #移动 0#

移动 0

https://www.nowcoder.com/practice/102586387caa4afcbad6f96affce9780

import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param nums int整型一维数组 
     * @return int整型一维数组
     */
    public int[] moveZeroes (int[] nums) {
        // write code here

        for(int cur=0,des=-1;cur<nums.length;cur++){        //当遇到不为0的数时,将不为零的数移到前面
            if(nums[cur]!=0){
                des++;
                int tmp = nums[cur];
                nums[cur] = nums[des];
                nums[des] = tmp;

            }
        }













        return nums;
    }





}

全部评论

相关推荐

威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务