/*
对给定数组进行排序
{5,1,6,4,2,8,9}
*/
class ShuZuTest2
{
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])//大于号时是升序排列,小于号时是降序排列。
{
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
}
}
public static void main(String[] args)
{
int[] arr = {5,1,6,4,2,8,9};
//在排序前打印
printArr(arr);
//排序
selectSort(arr);
//在排序后打印
printArr(arr);
}
public static void printArr(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.println(arr[x]+"]");
}
}
}
请参考! |