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

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

题目如下。~

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.

这道题注意是要求不能新建array来完成。所以与其想办法判断怎么移动。不如直接把所有!=0的数字按顺序提前,那么剩下的0自然就在后面了。

代码如下。~

public class Solution {    public void moveZeroes(int[] nums) {        int i=0;        int j=-1;        while(i

 

转载于:https://www.cnblogs.com/orangeme404/p/4865635.html

你可能感兴趣的文章
C++----练习--引用头文件
查看>>
11.基本包装类型
查看>>
ajax连接服务器框架
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
用HttpCombiner来减少js和css的请问次数
查看>>
FUSE-用户空间文件系统
查看>>
将tiff文件转化为jpg文件并保存
查看>>
ubuntu 16.04 开机脚本
查看>>
 VS2012 C#调用C++ dll
查看>>
TCL:表格(xls)中写入数据
查看>>
SQL SERVER 2005中如何获取日期(一个月的最后一日、一年的第一日等等)
查看>>
django 学习笔记(转)
查看>>
控制台程序秒变Windows服务(Topshelf)
查看>>
字节流与字符流的区别详解
查看>>
20141026--娱乐-箱子
查看>>
自定义分页
查看>>
Oracle事务
查看>>
任意输入10个int类型数据,把这10个数据首先按照排序输出,挑出这些数据里面的素数...
查看>>
String类中的equals方法总结(转载)
查看>>