冒泡法输出的结果没变化
package com.imooc;
public class test111 {
public static void main(String[] args) {
int[] arr = { 24, 69, 80, 57, 13 };
for (int i = 0; i < arr.length - 1; i++) {
for (int j = 0; j < arr.length - 1 - i; j++) {
swap(arr[j], arr[j + 1]);
}
}
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
public static void swap(int a, int b) {
if (a > b) {
int temp;
temp = a;
a = b;
b = temp;
}
}
}