Leetcode[283] Move Zeroes
05 Dec 2015###Task1 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: You must do this in-place without making a copy of the array. Minimize the total number of operations.
###Python
class Solution(object):
def moveZeroes(self, nums):
"""
:type nums: List[int]
:rtype: void Do not return anything, modify nums in-place instead.
"""
if not nums or len(nums) == 0:
return
left = 0
count = 0
for i in range(len(nums)):
if nums[i] != 0:
nums[left] = nums[i]
left += 1
else:
count += 1
for i in range(count):
nums[-1-i] = 0
return
####One pass
class Solution(object):
def moveZeroes(self, nums):
"""
:type nums: List[int]
:rtype: void Do not return anything, modify nums in-place instead.
"""
if not nums or len(nums) == 0:
return
left = 0
for i in range(len(nums)):
if nums[i] != 0:
nums[i], nums[left] = nums[left], nums[i]
left += 1
return
###Java
public class Solution {
public void swap(int[] nums, int i, int j) {
int temp = nums[i];
nums[i] = nums[j];
nums[j] = temp;
}
public void moveZeroes(int[] nums) {
if (nums == null || nums.length == 0) {
return;
}
int numNonZero = 0;
for (int i = 0; i < nums.length; i++) {
if(nums[i] != 0) {
swap(nums, i, numNonZero);
numNonZero++;
}
}
return;
}
}
###Points 算法步骤:
使用两个"指针"x和y,初始令y = 0
利用x遍历数组nums:
若nums[x]非0,则交换nums[x]与nums[y],并令y+1
算法简析:
y指针指向首个0元素可能存在的位置
遍历过程中,算法确保[y, x)范围内的元素均为0