class ArrayDemo{
public static void main(String[] args) {
int[] arr= {89,34,-270,17,3,100};
System.out.print("排序前数组:");
⑴printArray(arr);
⑵selectSort(arr);
System.out.print("排序后数组:");
⑶printArray(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]){
int temp = arr[x];
arr[x] = arr[y];
arr[y] = temp;
}
}
}
}
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.println(arr[x] + "]" );
}
}
}
请教下,上面排序中,2个 printArray(arr);分别的含义,这里面为什么写(1)(2)(3),分别代表什么。后面的程序不需要解释,只需要帮忙解答下这个。谢谢 |
|