diff --git a/codes/heheer/9674738.java b/codes/heheer/9674738.java new file mode 100644 index 0000000000000000000000000000000000000000..3923f7078601d75004d88bf75be136d418c09154 --- /dev/null +++ b/codes/heheer/9674738.java @@ -0,0 +1,22 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + // 你的代码,使无序数组 a 变得有序 + int i, j; + + for(i=0; ia[j]){ + int temp; + temp = a[j-1]; + a[j-1] = a[j]; + a[j] = temp; + } + } + } + +} //end