public class TimSort<T>
extends java.lang.Object
flyingSort(T[], java.util.Comparator<? super T>, int)
,
IntIndexTimSort
Modifier and Type | Method and Description |
---|---|
static <T> void |
flyingSort(T[] a,
java.util.Comparator<? super T> c,
int knownSortedUntil)
This method is the core of why I'm extracting TimSort from OpenJDK:
It provides a means to start TimSort in a way to avoid a revisiting each
and every object first.
|
static <T> void |
sort(T[] a,
java.util.Comparator<? super T> c)
Sorts a given array $a with the help of the Comparator $c.
|
public static <T> void sort(T[] a, java.util.Comparator<? super T> c)
public static <T> void flyingSort(T[] a, java.util.Comparator<? super T> c, int knownSortedUntil)
len(o) | len(n) | sort comps | flyingSort comps |
---|---|---|---|
1000 | 10 | 1170 | 30-120 |
1000 | 100 | 2500 | 600-900 |
1000 | 1000 | 11700 | 9000-10000 |
10000 | 10 | 10200 | 30-120 |
10000 | 100 | 12000 | 600-1200 |
10000 | 1000 | 28000 | 10000-15000 |
100000 | 1000 | 102500 | 800-1600 |
1000000 | 1000 | 1003500 | 1000-2500 |
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.