| Package | Description |
|---|---|
| it.unimi.dsi.fastutil |
Provides static data/methods used by all implementations and some non-type-specific classes
that do not belong to
it.unimi.dsi.fastutil.objects. |
| Modifier and Type | Method and Description |
|---|---|
static void |
Arrays.mergeSort(int from,
int to,
IntComparator c,
Swapper swapper)
Sorts the specified range of elements using the specified swapper and according to the order induced by the specified
comparator using mergesort.
|
static void |
Arrays.parallelQuickSort(int from,
int to,
IntComparator comp,
Swapper swapper)
Sorts the specified range of elements using the specified swapper and according to the order induced by the specified
comparator using a parallel quicksort.
|
static void |
Arrays.quickSort(int from,
int to,
IntComparator comp,
Swapper swapper)
Sorts the specified range of elements using the specified swapper and according to the order induced by the specified
comparator using parallel quicksort.
|
protected static void |
Arrays.swap(Swapper swapper,
int a,
int b,
int n)
Swaps two sequences of elements using a provided swapper.
|
| Constructor and Description |
|---|
ForkJoinGenericQuickSort(int from,
int to,
IntComparator comp,
Swapper swapper) |
Copyright © 2020. All rights reserved.