給定一個數組 nums,編寫一個函數將全部 0 移動到數組的末尾,同時保持非零元素的相對順序。數組
示例:網絡
輸入: [0,1,0,3,12]
輸出: [1,3,12,0,0]
說明:函數
必須在原數組上操做,不能拷貝額外的數組。
儘可能減小操做次數。code
來源:力扣(LeetCode)
連接:https://leetcode-cn.com/problems/move-zeroes
著做權歸領釦網絡全部。商業轉載請聯繫官方受權,非商業轉載請註明出處。leetcode
想像成一個數組拷到另外一個數組,只不過如今是複用了原數組。get
class Solution { public void moveZeroes(int[] nums) { int j = 0; for (int i = 0; i < nums.length; ++i) { if (nums[i] != 0) { nums[j++] = nums[i]; } } while (j < nums.length) { nums[j++] = 0; } } }