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++; } } } } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/65999.html
摘要:把矩陣所有零點的行和列都置零,要求不要額外的空間。對于首行和首列的零點,進行額外的標記即可。這道題我自己做了四遍,下面幾個問題需要格外注意標記首行和首列時,從到遍歷時,若有零點,則首列標記為從到遍歷,若有零點,則首行標記為。 Problem Given a m x n matrix, if an element is 0, set its entire row and column t...
摘要:題目鏈接題目分析給定一個整數數組,將值為的元素移動到數組末尾,而不改動其他元素出現的順序。再在去后的元素末尾填充到計算出的數組長度。最終代碼若覺得本文章對你有用,歡迎用愛發電資助。 D68 283. Move Zeroes 題目鏈接 283. Move Zeroes 題目分析 給定一個整數數組,將值為0的元素移動到數組末尾,而不改動其他元素出現的順序。 思路 計算總共有多少個元素。 再...
摘要:雙指針壓縮法復雜度時間空間思路實際上就是將所有的非數向前盡可能的壓縮,最后把沒壓縮的那部分全置就行了。比如,先壓縮成,剩余的為全置為。過程中需要一個指針記錄壓縮到的位置。 Move Zeroes Given an array nums, write a function to move all 0s to the end of it while maintaining the rel...
摘要:給定一個數組,編寫一個函數將所有移動到數組的末尾,同時保持非零元素的相對順序。盡量減少操作次數。換個思路,把非數字前移,不去管數字。這樣遍歷完之后,數組索引從到之間的數值即為所求得保持非零元素的相對順序,而之后的數值只需要全部賦值即可。 給定一個數組 nums,編寫一個函數將所有 0 移動到數組的末尾,同時保持非零元素的相對順序。 Given an array nums, write ...
摘要:給定一個數組,編寫一個函數將所有移動到數組的末尾,同時保持非零元素的相對順序。盡量減少操作次數。換個思路,把非數字前移,不去管數字。這樣遍歷完之后,數組索引從到之間的數值即為所求得保持非零元素的相對順序,而之后的數值只需要全部賦值即可。 給定一個數組 nums,編寫一個函數將所有 0 移動到數組的末尾,同時保持非零元素的相對順序。 Given an array nums, write ...
閱讀 841·2021-11-15 17:58
閱讀 3641·2021-11-12 10:36
閱讀 3779·2021-09-22 16:06
閱讀 956·2021-09-10 10:50
閱讀 1325·2019-08-30 11:19
閱讀 3309·2019-08-29 16:26
閱讀 928·2019-08-29 10:55
閱讀 3341·2019-08-26 13:48