冒泡排序
1.原理
其实就是相邻两个数字进行比较,把大的放后面,把大的数字浮上去像泡泡一样
原理图: 图片来自网络
2.代码
private static void sort(int[] array) throws Exception {
if (array == null || array.length == 0) {
throw new Exception("the array is null or no element...");
}
System.out.println("冒泡排序优化前...");
int n = array.length;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (array[j] > array[j + 1]) {
swap(array, j, j + 1);
}
}
System.out.println("第" + (i + 1) + "轮后: " + Arrays.toString(array));
}
}
输出
第1轮后: [3, 1, 4, 2, 7, 8, 6, 5, 9]
第2轮后: [1, 3, 2, 4, 7, 6, 5, 8, 9]
第3轮后: [1, 2, 3, 4, 6, 5, 7, 8, 9]
第4轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
第5轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
第6轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
第7轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
第8轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
第9轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
当第5轮的时候已经排好序了,所以后面都是无用功。
此时需要优化一下
private static void optimizeSort(int[] array) throws Exception {
if (array == null || array.length == 0) {
throw new Exception("the array is null or no element...");
}
System.out.println("冒泡排序优化后...");
int n = array.length;
for (int i = 0; i < n; i++) {
// 设定一个排序完成的标记
// 若为 true,则表示此次循环没有进行交换,即待排序列已经有序,排序已然完成
boolean success = true;
for (int j = 0; j < n - i - 1; j++) {
if (array[j] > array[j + 1]) {
swap(array, j, j + 1);
success = false;
}
}
if (success) {
break;
}
System.out.println("第" + (i + 1) + "轮后: " + Arrays.toString(array));
}
}
输出
第1轮后: [3, 1, 4, 2, 7, 8, 6, 5, 9]
第2轮后: [1, 3, 2, 4, 7, 6, 5, 8, 9]
第3轮后: [1, 2, 3, 4, 6, 5, 7, 8, 9]
第4轮后: [1, 2, 3, 4, 5, 6, 7, 8, 9]
代码来自网络
学习相关链接🔗简书 - 必须掌握的八种基本排序算法:冒泡排序
图侵删