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