博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用Java创建数组工具类ArrayTool
阅读量:6231 次
发布时间:2019-06-21

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

起步阶段写的代码,欢迎大家批评指正!public class ArrayTool{	/**	The constructor of the class ArrayTool,which is empty.	*/	private ArrayTool(){}	/**	Get the max value of the array.	@param arr	@return	*/	public static int getMax(int[] arr)	{		int max=0;		for(int x=1;x
arr[max]) max=x; } return arr[max]; } /** Get the min value of the array. @param arr @return */ public static int getMin(int[] arr) { int min=0; for(int x=1;x
arr[y]) { swap(arr,x,y); } } } } /** Sort the int type array using bubbletSort @param arr */ public static void bubbleSort(int[] arr) { for(int x=0;x
arr[y+1]) { swap(arr,y,y+1); } } } } /** Print out the elements of the array that define print style:[element1,element2,...] */ public static void printArray(int[] arr) { System.out.print("["); for(int x=0;x

转载地址:http://fwqna.baihongyu.com/

你可能感兴趣的文章
Android应用开发新路线
查看>>
smartHost 北京服务器
查看>>
制作自己的网络字体
查看>>
Xcode的包管理器:Alcatraz
查看>>
WinForms Adorner UI Manager v16.1支持高亮特定控件
查看>>
开源 免费 java CMS - FreeCMS1.2-功能说明-会员管理
查看>>
apache的mime.types作用
查看>>
语言的对于处理器的字长问题
查看>>
Virgo IDE Milestones
查看>>
查询数据库布局信息
查看>>
Android高手进阶(一)AIDL跨进程调用
查看>>
cocos2d-iphone之魔塔20层第八部分
查看>>
JSTL 核心标签库 使用
查看>>
安装Robot Framework-Mac
查看>>
mysql 多表 update sql语句总结
查看>>
Redhat 6 升级 openssl-1.0.2m 、openssh-7.6p1 和 ntp-4.2.8p10
查看>>
Spring-boot添加Mybatis
查看>>
一个早期前FB员工是如何搞砸了自己的工作,失去了1亿8千5百万美元
查看>>
在CentOS中安装flashplay插件
查看>>
flexpaper组件中关于隐藏真实的swf 地址下载
查看>>