10黑马币
最佳答案class ArrayTools {
//选择排序
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 bubbleSort(int[] arr) {
//外层循 ...
| |
| |
| |
| |
| |