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.
NoticeYou must do this in-place without making a copy of the array.
Minimize the total number of operations.
Given nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0].
Solution A too-clever methodclass 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
摘要:把矩陣所有零點的行和列都置零,要求不要額外的空間。對于首行和首列的零點,進行額外的標記即可。這道題我自己做了四遍,下面幾個問題需要格外注意標記首行和首列時,從到遍歷時,若有零點,則首列標記為從到遍歷,若有零點,則首行標記為。 Problem Given a m x n matrix, if an element is 0, set its entire row and column t...
摘要:題目鏈接題目分析給定一個整數(shù)數(shù)組,將值為的元素移動到數(shù)組末尾,而不改動其他元素出現(xiàn)的順序。再在去后的元素末尾填充到計算出的數(shù)組長度。最終代碼若覺得本文章對你有用,歡迎用愛發(fā)電資助。 D68 283. Move Zeroes 題目鏈接 283. Move Zeroes 題目分析 給定一個整數(shù)數(shù)組,將值為0的元素移動到數(shù)組末尾,而不改動其他元素出現(xiàn)的順序。 思路 計算總共有多少個元素。 再...
摘要:雙指針壓縮法復雜度時間空間思路實際上就是將所有的非數(shù)向前盡可能的壓縮,最后把沒壓縮的那部分全置就行了。比如,先壓縮成,剩余的為全置為。過程中需要一個指針記錄壓縮到的位置。 Move Zeroes Given an array nums, write a function to move all 0s to the end of it while maintaining the rel...
摘要:給定一個數(shù)組,編寫一個函數(shù)將所有移動到數(shù)組的末尾,同時保持非零元素的相對順序。盡量減少操作次數(shù)。換個思路,把非數(shù)字前移,不去管數(shù)字。這樣遍歷完之后,數(shù)組索引從到之間的數(shù)值即為所求得保持非零元素的相對順序,而之后的數(shù)值只需要全部賦值即可。 給定一個數(shù)組 nums,編寫一個函數(shù)將所有 0 移動到數(shù)組的末尾,同時保持非零元素的相對順序。 Given an array nums, write ...
摘要:給定一個數(shù)組,編寫一個函數(shù)將所有移動到數(shù)組的末尾,同時保持非零元素的相對順序。盡量減少操作次數(shù)。換個思路,把非數(shù)字前移,不去管數(shù)字。這樣遍歷完之后,數(shù)組索引從到之間的數(shù)值即為所求得保持非零元素的相對順序,而之后的數(shù)值只需要全部賦值即可。 給定一個數(shù)組 nums,編寫一個函數(shù)將所有 0 移動到數(shù)組的末尾,同時保持非零元素的相對順序。 Given an array nums, write ...
閱讀 855·2021-11-15 17:58
閱讀 3658·2021-11-12 10:36
閱讀 3794·2021-09-22 16:06
閱讀 969·2021-09-10 10:50
閱讀 1333·2019-08-30 11:19
閱讀 3317·2019-08-29 16:26
閱讀 942·2019-08-29 10:55
閱讀 3349·2019-08-26 13:48