`
jishublog
  • 浏览: 873417 次
文章分类
社区版块
存档分类
最新评论

用Java创建数组工具类ArrayTool

 
阅读更多
起步阶段写的代码,欢迎大家批评指正!

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.length;x++)
		{
			if(arr[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.length;x++)
		{
			if(arr[x]<arr[min])
				min=x;
		}
		return arr[min];
	}

	/**
	Exchange the position of the array element
	@param arr  int type
	@param a
	@param b
	*/
	private static void swap(int[] arr,int a,int b)
	{
		int temp=arr[a];
		  arr[a]=arr[b];
		  arr[b]=temp;
	}

	/**
	Sort the int type array using selectSort
	@param arr 
	*/
	public static void selectSort(int[] arr)
	{
		for(int x=0;x<arr.length-1;x++)
		{
			for(int y=x+1;y<arr.length;y++)
			{
				if(arr[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.length-1;x++)
		{
			for(int y=0;y<arr.length-x-1;y++)
			{
				if(arr[y]>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<arr.length;x++)
		{
			if(x!=arr.length-1)
				System.out.print(arr[x]+",");
			else	
				System.out.print(arr[x]+"]");
		}
		System.out.println();
	}
}

分享到:
评论

相关推荐

    ArrayTool工具类

    ArrayTool工具类

    arraytool_antenna_smartantenna_

    programa el el calculo de arreglo de antenas

    C#工具文档项目资源,分享出来.zip

    Azylee.Core 模块: 包含常用的工具方法 无其他第三方引用 编译后仅一个 dll 文件 ● AppUtils:程序辅助... ┣ ArrayTool.cs // 数组格式化 ┣ ListTool.cs // 列表内容判断 ┗ Ls.cs // 列表内容判断(ListTool)

    Data-Tools:用于数据处理的基本库

    阵列工具ArrayTool是启用数组内路径的工具。 它还允许以这种方式展平阵列并扩展展平的阵列。 对于ArrayTool , path或flat path是用“ /”(斜杠)分隔的路径(foo / bar)。 array path基本上是爆炸路径的结果( ...

    BRB arrarytools 中文说明书

    BRB-ArrayTools使用手册,方便生物、医学工作者。超清晰,好不容易下载到 BRB-ArrayTools是一款为了DNA基因芯片数据分析而设计的集成软件包,由Dr.Richard Simon所领导的生物识别小组所开发(隶属于美国国家癌症研究...

Global site tag (gtag.js) - Google Analytics