public class TimSortLong
extends java.lang.Object
This is a nearly 1:1 copy of TimSort
for objects.
Standard Java can sort primitive long
values only in their natural order.
This class allows sorting them in any user-defined order.
Having this flexibility comes with a price: TimSortLong.sort(array, LongOrdering.ASCENDING
will give the same result as Arrays.sort(array)
, but be some 60% to 75% slower.
TimSort is an advanced stable sorting algorithm developed by Tim Peters.
This code is a port derived from Python 3.11.1 source code found under
http://svn.python.org/projects/python/trunk/Objects/listobject.c.
TimSort is already included in Java since version 1.7 as a package-private class
under java.util.TimSort
(only for sorting Objects).
The workings of TimSort are described in a paper found under http://svn.python.org/projects/python/trunk/Objects/listsort.txt.
TimSort
,
TimSortDouble
,
TimSortFloat
,
TimSortInt
Modifier and Type | Method and Description |
---|---|
(package private) static int |
mergeComputeMinrun(int n)
Compute a good value for the minimum run length.
|
static void |
sort(long[] array,
int start,
int len,
LongOrdering order)
Sort a part of a long array in the given order.
|
static void |
sort(long[] array,
LongOrdering order)
Sort a long array in the given order.
|
static void |
sort(MutableLongIndexable elements)
Sort the comparable elements of a mutable long indexable in their natural order.
|
static void |
sort(MutableLongIndexable elements,
LongOrdering order)
Sort a mutable long indexable in the given order.
|
public static void sort(@NotNull long[] array, @NotNull LongOrdering order)
array
- long array ordered by this methodorder
- order to applypublic static void sort(@NotNull long[] array, int start, int len, @NotNull LongOrdering order)
array
- long array partly ordered by this methodstart
- start of part of the array which is sortedlen
- number of elements which are sortedorder
- order to applypublic static void sort(@NotNull MutableLongIndexable elements)
elements
- elements to sortpublic static void sort(@NotNull MutableLongIndexable elements, @NotNull LongOrdering order)
elements
- elements to sortorder
- order defined for elementsjava.lang.IllegalArgumentException
- if order fails its invariantstatic int mergeComputeMinrun(int n)
n
if it is less than MIN_MERGE
because it's too small
for fancy stuff.
See http://svn.python.org/projects/python/trunk/Objects/listsort.txt for more info.
n
- size of remaining run