private static boolean less(Comparable v, Comparable w) {
return v.compareTo(w) < 0;
}
private static void exch(Comparable[] a, int i, int j) {
Comparable t = a[i];
a[i] = a[j];
a[j] = t;
}
public static void sort(Comparable[] a) {
int n = a.length;
int h = 1;
while (h < n / 3) {
h = 3 * h + 1;
}
while (h >= 1) {
for (int i = h; i < n; i++) {
for (int j = i; j >= h && less(a[j], a[j - h]); j -= h) {
exch(a, j, j - h);
}
}
h /= 3;
}
}
public static void sort(Comparable[] a) {
int n = a.length;
int h = 1;
while (h < n / 3) {
h = 3 * h + 1;
}
while (h >= 1) {
for (int i = h; i < n; i++) {
for (int j = i; j >= h ; j -= h) {
if (less(a[j], a[j - h])) {
exch(a, j, j - h);
}
}
}
h /= 3;
}
}
第二个sort方法只是把 if 语句从for循环的判断语句中取出,为什么排序速度会慢了上百倍呀?
最初の関数の for ループはless() == true の後に多くの無駄な比較を行うため、複雑さは直接 O(n^2) に低下します。
less() == true
まで実行されて終了し、2 番目の関数は jスピードの問題はともかく、あなたの書き方は同等ではありません。最も内側のループの最初のループの実行数は、2 番目のループの実行数以下である必要があります。