亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 283. Move Zeroes 數組

發布時間:2020-07-19 18:46:24 來源:網絡 閱讀:439 作者:313119992 欄目:編程語言

283. Move Zeroes

Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.

For example, given nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0].

Note:

  1. You must do this in-place without making a copy of the array.

  2. Minimize the total number of operations.

題目大意:

將數組中元素為0的元素放到數組的后面,但是數組中其他非0元素,保持原來的順序。

代碼如下:

class Solution {
public:
    void moveZeroes(vector<int>& nums) {
        int step = 0;
        for(int i = 0 ; i < nums.size();i++)
        {
            if(nums[i] == 0)
            {
                step++;
            }
            else
            {
                nums[i - step] = nums[i];
                if(step != 0)
                    nums[i] = 0;
            }
        }
    }
};

2016-08-12 01:26:32

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝坻区| 巨鹿县| 星子县| 许昌市| 申扎县| 岗巴县| 巧家县| 定陶县| 汾西县| 安宁市| 滨州市| 云安县| 阿鲁科尔沁旗| 四子王旗| 德钦县| 无为县| 东乡族自治县| 大悟县| 深水埗区| 翁源县| 澄城县| 靖远县| 洪泽县| 安阳县| 桐乡市| 阜阳市| 镶黄旗| 故城县| 松桃| 扶绥县| 驻马店市| 宜兴市| 介休市| 花莲县| 嘉禾县| 曲阳县| 皋兰县| 恩平市| 涞水县| 公安县| 顺义区|