public static void bubbleSort(int[] a) { int temp = 0; for (int i = 0; ii; j--) { if (a[j] < a[j - 1]) { temp = a[j - 1]; a[j - 1] = a[j]; a[j] = temp; } } } }
冒泡排序时间复杂度O(n2)
本文共 446 字,大约阅读时间需要 1 分钟。
public static void bubbleSort(int[] a) { int temp = 0; for (int i = 0; ii; j--) { if (a[j] < a[j - 1]) { temp = a[j - 1]; a[j - 1] = a[j]; a[j] = temp; } } } }
冒泡排序时间复杂度O(n2)
转载于:https://www.cnblogs.com/lemonP/p/6774840.html