码迷,mamicode.com
首页 > 移动开发 > 详细

LeetCode 283. 移动零 Move Zeroes (Easy)

时间:2020-05-19 00:16:24      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:code   target   problem   数组   col   pre   get   函数   http   

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

技术图片

来源:力扣(LeetCode)

 

class Solution {
public:
    void moveZeroes(vector<int>& nums) {
        
        int index = 0;
        for (int num : nums)
        {
            if (num != 0)
                nums[index++] = num;
        }
        while (index < nums.size())  //补零
            nums[index++] = 0;
    }
};

 

LeetCode 283. 移动零 Move Zeroes (Easy)

标签:code   target   problem   数组   col   pre   get   函数   http   

原文地址:https://www.cnblogs.com/ZSY-blog/p/12913910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!