diff --git a/codes/15860488.java b/codes/15860488.java new file mode 100644 index 0000000000000000000000000000000000000000..8906d25ae8111e8f1cac59610b222703dc1e684c --- /dev/null +++ b/codes/15860488.java @@ -0,0 +1,18 @@ +/** + * 冒泡排序函数 + * aa bb cc + * @param a 待排序的数组 + * @param n 待排序的数组长度 + */ +public static void bubbleSort(int [] a, int n){ + for(int i=0;ia[j+1]){ + // 交换 a[j] 和 a[j+1] + int temp = a[j]; + a[j] = a[j+1]; + a[j+1] = temp; + } + } + } +} //end