成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

[LintCode] Move Zeroes

Mr_houzi / 742人閱讀

Problem

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.

Notice

You must do this in-place without making a copy of the array.
Minimize the total number of operations.

Example

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

Solution A too-clever method
class Solution {
    public void moveZeroes(int[] nums) {
        int i = 0, j = 0;
        while (i < nums.length && j < nums.length) {
            if (nums[i] != 0) {
                int temp = nums[i];
                nums[i] = nums[j];
                nums[j] = temp;
                j++;
            }
            i++;
        }
    }
}
A just-so-so method
public class Solution {
    public void moveZeroes(int[] nums) {
        int i = 0, j = i+1;
        while (j < nums.length) {
            if (nums[i] != 0) {
                i++;
                j++;
            }
            else {
                if (nums[j] == 0) j++;
                else {
                    swap(nums, i, j);
                    i++;
                }
            }
        }
    }
    public void swap(int[] nums, int i, int j) {
        int temp = nums[i];
        nums[i] = nums[j];
        nums[j] = temp;
    }
}
    

Update 2018-8

class Solution {
    public void moveZeroes(int[] nums) {
        if (nums == null || nums.length < 2) return;
        int i = 0, j = 1;
        while (j < nums.length) {
            if (nums[i] != 0) {
                i++;
                j++;
            } else {
                if (nums[j] == 0) {
                    j++;
                } else {
                    int temp = nums[i];
                    nums[i] = nums[j];
                    nums[j] = temp;
                    i++;
                }
            }
        }
    }
}

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/65999.html

相關(guān)文章

  • [LintCode/LeetCode/CC] Set Matrix Zeroes

    摘要:把矩陣所有零點的行和列都置零,要求不要額外的空間。對于首行和首列的零點,進行額外的標記即可。這道題我自己做了四遍,下面幾個問題需要格外注意標記首行和首列時,從到遍歷時,若有零點,則首列標記為從到遍歷,若有零點,則首行標記為。 Problem Given a m x n matrix, if an element is 0, set its entire row and column t...

    zhangwang 評論0 收藏0
  • Leetcode PHP題解--D68 283. Move Zeroes

    摘要:題目鏈接題目分析給定一個整數(shù)數(shù)組,將值為的元素移動到數(shù)組末尾,而不改動其他元素出現(xiàn)的順序。再在去后的元素末尾填充到計算出的數(shù)組長度。最終代碼若覺得本文章對你有用,歡迎用愛發(fā)電資助。 D68 283. Move Zeroes 題目鏈接 283. Move Zeroes 題目分析 給定一個整數(shù)數(shù)組,將值為0的元素移動到數(shù)組末尾,而不改動其他元素出現(xiàn)的順序。 思路 計算總共有多少個元素。 再...

    xiongzenghui 評論0 收藏0
  • [Leetcode] Move Zeroes 移動零

    摘要:雙指針壓縮法復雜度時間空間思路實際上就是將所有的非數(shù)向前盡可能的壓縮,最后把沒壓縮的那部分全置就行了。比如,先壓縮成,剩余的為全置為。過程中需要一個指針記錄壓縮到的位置。 Move Zeroes Given an array nums, write a function to move all 0s to the end of it while maintaining the rel...

    baiy 評論0 收藏0
  • LeetCode 283:移動零 Move Zeroes

    摘要:給定一個數(shù)組,編寫一個函數(shù)將所有移動到數(shù)組的末尾,同時保持非零元素的相對順序。盡量減少操作次數(shù)。換個思路,把非數(shù)字前移,不去管數(shù)字。這樣遍歷完之后,數(shù)組索引從到之間的數(shù)值即為所求得保持非零元素的相對順序,而之后的數(shù)值只需要全部賦值即可。 給定一個數(shù)組 nums,編寫一個函數(shù)將所有 0 移動到數(shù)組的末尾,同時保持非零元素的相對順序。 Given an array nums, write ...

    tianyu 評論0 收藏0
  • LeetCode 283:移動零 Move Zeroes

    摘要:給定一個數(shù)組,編寫一個函數(shù)將所有移動到數(shù)組的末尾,同時保持非零元素的相對順序。盡量減少操作次數(shù)。換個思路,把非數(shù)字前移,不去管數(shù)字。這樣遍歷完之后,數(shù)組索引從到之間的數(shù)值即為所求得保持非零元素的相對順序,而之后的數(shù)值只需要全部賦值即可。 給定一個數(shù)組 nums,編寫一個函數(shù)將所有 0 移動到數(shù)組的末尾,同時保持非零元素的相對順序。 Given an array nums, write ...

    seanlook 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<