91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

正安县| 蒙山县| 双牌县| 澎湖县| 临猗县| 绍兴县| 石楼县| 嘉峪关市| 麻阳| 博爱县| 文成县| 日喀则市| 湘阴县| 新绛县| 盐亭县| 翁牛特旗| 阿瓦提县| 射洪县| 富川| 四平市| 南川市| 西乌| 江都市| 安乡县| 武隆县| 漯河市| 岳池县| 陕西省| 织金县| 长沙县| 万年县| 闽侯县| 洮南市| 博兴县| 大田县| 辛集市| 锦屏县| 定远县| 大港区| 蕲春县| 台北县|