I can't find the documentation of Java 7, I only find about the Java 6, which is still quick or merge. Does anyone know how to find the documentation of the method Arrays.Sort of Java 7? Thank you.
|
|
Java 7 uses Dual-Pivot Quicksort for primitives and TimSort for objects. According to the Java 7 API doc for primitives:
According to the Java 7 API doc for objects:
Not sure if this is much different from what it was in Java 6:
|
|||||||||
|
|
Yes, Java 7 will use Timsort for Arrays.sort. Here is the commit http://hg.openjdk.java.net/jdk7/tl/jdk/rev/bfd7abda8f79 |
|||
|
|