diff --git a/codes/wk471860938/.9953014.java.swp b/codes/wk471860938/.9953014.java.swp new file mode 100644 index 0000000000000000000000000000000000000000..2a17fb99f7b7c143d630fbdd223faa12bfcec31f Binary files /dev/null and b/codes/wk471860938/.9953014.java.swp differ diff --git a/codes/wk471860938/9953014.java b/codes/wk471860938/9953014.java new file mode 100644 index 0000000000000000000000000000000000000000..72d72c3dd31207f224bac05ac42aa2415ba602e6 --- /dev/null +++ b/codes/wk471860938/9953014.java @@ -0,0 +1,18 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + for (int i = 0; i < n - 1; i++){ + for (int j = 0; j < n – 1 - i; j++){ + if (a[j] > a[j + 1]){ + int temp=a[j]; + a[j]=a[j+1]; + a[j+1]=temp; + } + } + } +} //end