commit
c96dd3d565
@ -1,8 +1,10 @@
|
||||
package sorts;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* 冒泡排序、插入排序、选择排序
|
||||
*
|
||||
* <p>
|
||||
* Author: Zheng
|
||||
*/
|
||||
public class Sorts {
|
||||
@ -27,6 +29,36 @@ public class Sorts {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 冒泡排序改进:在每一轮排序后记录最后一次元素交换的位置,作为下次比较的边界,
|
||||
* 对于边界外的元素在下次循环中无需比较.
|
||||
*/
|
||||
public static void bubbleSort2(int[] a, int n) {
|
||||
if (n <= 1) return;
|
||||
|
||||
// 最后一次交换的位置
|
||||
int lastExchange = 0;
|
||||
// 无序数据的边界,每次只需要比较到这里即可退出
|
||||
int sortBorder = n - 1;
|
||||
for (int i = 0; i < n; i++) {
|
||||
// 提前退出标志位
|
||||
boolean flag = false;
|
||||
for (int j = 0; j < sortBorder; j++) {
|
||||
if (a[j] > a[j + 1]) {
|
||||
int tmp = a[j];
|
||||
a[j] = a[j + 1];
|
||||
a[j + 1] = tmp;
|
||||
// 此次冒泡有数据交换
|
||||
flag = true;
|
||||
// 更新最后一次交换的位置
|
||||
lastExchange = j;
|
||||
}
|
||||
}
|
||||
sortBorder = lastExchange;
|
||||
if (!flag) break; // 没有数据交换,提前退出
|
||||
}
|
||||
}
|
||||
|
||||
// 插入排序,a表示数组,n表示数组大小
|
||||
public static void insertionSort(int[] a, int n) {
|
||||
if (n <= 1) return;
|
||||
@ -66,4 +98,9 @@ public class Sorts {
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
int[] array = new int[]{3, 4, 2, 1, 5, 6, 7, 8};
|
||||
bubbleSort2(array, array.length);
|
||||
System.out.println(Arrays.toString(array));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user