博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Array:Move Zeroes
阅读量:5095 次
发布时间:2019-06-13

本文共 1203 字,大约阅读时间需要 4 分钟。

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:

  1. You must do this in-place without making a copy of the array.
  2. Minimize the total number of operations.

将数组中的0移动到数组末尾。

解题思路1:

先将所有的非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;    }}

 

解题思路2:

用两个指针,一个循环数组,一个指向数组中的第一个0,将每个非0数与第一个0交换,依次将所有的非0数换到0前面。

public void moveZeroes(int[] nums) {        int firstZeroIndex = 0;        for (int i = 0; i < nums.length; i++) {            if (nums[i] != 0) {                int temp = nums[firstZeroIndex];                nums[firstZeroIndex] = nums[i];                nums[i] = temp;                firstZeroIndex++;            }        }    }

 例如数组[0, 1, 0, 3, 12],移动过程为:[1, 0, 0, 3, 12]--->[1, 3, 0, 0, 12]--->[1, 3, 12, 0, 0]

转载于:https://www.cnblogs.com/ltchu/p/6409273.html

你可能感兴趣的文章
10.1 考试 ..........
查看>>
VMware 12 专业版永久许可证密钥
查看>>
PHP 之 MySQL 操作(1)
查看>>
设计模式之装饰者模式-以牛肉面为例
查看>>
ffmpeg mediacodec 硬解初探
查看>>
线性表
查看>>
ESB总线知识小结
查看>>
一元一次多项式的加法运算(数组法)
查看>>
本周总结
查看>>
vimrc
查看>>
工科数学分析序言及索引(不断更新中)
查看>>
Android 大牛的 blog 值得推荐 (转 整理)
查看>>
jupyter sparkmagic on hdp
查看>>
SqlServer性能优化(一)
查看>>
AutoIt自动化编程(4)
查看>>
阿里云挖矿病毒查杀
查看>>
生命周期-@PostConstruct&@PreDestroy
查看>>
java.io.Serializable的作用
查看>>
《linux内核设计与实现》读书笔记第一、二章
查看>>
封装及调用fetch
查看>>