1

TimSort 是一种在 Java 7 中默认用于排序的算法。

我找到了这个来源,但我不明白要调用哪个方法,因为它们都是私有的。有人能理解吗?谢谢你。

http://cr.openjdk.java.net/~martin/webrevs/openjdk7/timsort/raw_files/new/src/share/classes/java/util/TimSort.java

4

1 回答 1

5

你什么都不叫。

它具有包私有的排序方法java.utilArrays.sort()当你调用函数或类似的东西时,你让它调用它们。

评论清楚地表明了这一点:

/*
 * The next two methods (which are package private and static) constitute
 * the entire API of this class.  Each of these methods obeys the contract
 * of the public method with the same signature in java.util.Arrays.
 */

static <T> void sort(T[] a, Comparator<? super T> c) {
    sort(a, 0, a.length, c);
}

static <T> void sort(T[] a, int lo, int hi, Comparator<? super T> c) {
    ...
}

从我上次发表评论的时间来看,这不到 15 分钟就完成了:

结果:

C:\Documents and Settings\glowcoder\My Documents>java SortTest
Time for default: 4094ms
Time for timsort: 3813ms

C:\Documents and Settings\glowcoder\My Documents>
于 2011-05-02T23:20:08.643 回答