Class LongQuickSort
- java.lang.Object
-
- org.eclipse.collections.impl.utility.primitive.LongQuickSort
-
public final class LongQuickSort extends Object
LongQuickSort is an implementation of the Quick Sort algorithm as described in Donald Knuth's TAOCP with some optimizations. It supports indirect array sorting based on primitive comparators and/or key values extracted from the array values if a sort order other thant the natural one of the array elements is required. This file was automatically generated from template file primitiveSort.stg.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidsort(long[] array, int left, int right, LongComparator comparator)
-
-
-
Method Detail
-
sort
public static void sort(long[] array, int left, int right, LongComparator comparator)
-
-