LeetCode题解:Move Zeroes

来源:互联网 发布:最强淘宝系统txt无弹窗 编辑:程序博客网 时间:2024/06/07 02:41

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.

题意:给定数组,维持数组中非0元素的顺序,将0移到数组末尾

解题思路:我的第一反应是双索引,一个索引标记当前指向的非0元素,一个索引标记当前指向的0元素。实现过程发现一个就够了

代码:

public void moveZeroes(int[] nums) {    if (nums == null || nums.length == 0) return;            int insertPos = 0;    for (int num: nums) {        if (num != 0) nums[insertPos++] = num;    }            while (insertPos < nums.length) {        nums[insertPos++] = 0;    }}
0 0
原创粉丝点击