博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
reverse array java
阅读量:5760 次
发布时间:2019-06-18

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

 

/* package whatever; // don't place package name! */import java.util.*;import java.lang.*;import java.io.*;/* Name of the class has to be "Main" only if the class is public. */class Ideone{    public static void main (String[] args) throws java.lang.Exception    {        int[] a = {1,2,4,5};        System.out.println( Arrays.toString(reverseArray(a)));    }        public static int[] reverseArray(int[] nums){        int begin = 0;        int end = nums.length -1;        while(begin < end){            swap(nums, begin++, end--);        }        return nums;    }        private static int[] swap(int[] nums, int begin, int end){        int temp = nums[begin];        nums[begin] = nums[end];        nums[end] = temp;        return nums;    }}

 

转载于:https://www.cnblogs.com/iwangzheng/p/5610836.html

你可能感兴趣的文章
win7 VS2012+openCV-2.4.11 配置
查看>>
mount, findmnt,df命令
查看>>
极限学习机
查看>>
Tomcat 中会话超时的相关配置
查看>>
numpy.linalg.eig
查看>>
23SpringMvc_各种参数绑定方式-就是<input那种
查看>>
OpenDayLight Helium安装
查看>>
Jmeter安装
查看>>
threadlocal精髓是为每一个线程保证一个共享对象,保证一个,保证是同一个
查看>>
跟着百度学PHP[2]-foreach条件嵌套
查看>>
NPOI导出多张图片到Excel
查看>>
【Visual Studio】控制台程序运行时一闪而过
查看>>
WebLogic中的一些基本概念
查看>>
crontab的使用笔记
查看>>
C# 0-1背包问题
查看>>
【机房收费个人版】触发器与存储过程
查看>>
Knockout.js 数据验证之插件版和无插件版
查看>>
hive udaf
查看>>
inputsimulator - Windows Input Simulator
查看>>
C++中的INL(转)
查看>>