| Package | Description |
|---|---|
| cc.redberry.rings.util |
| Modifier and Type | Field and Description |
|---|---|
static IntComparator |
IntComparator.DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static void |
ArraysUtil.quickSort(int[] target,
int[] cosort,
IntComparator comparator)
Sorts the specified target array of ints according to
IntComparator and simultaneously permutes the
coSort Objects array in the same way as the target array. |
static void |
ArraysUtil.quickSort(int[] target,
IntComparator comparator)
Sorts the specified range of the specified target array of ints into order specified by
IntComparator
using quicksort. |
static void |
ArraysUtil.quickSort(int[] target,
int fromIndex,
int toIndex,
int[] cosort,
IntComparator comparator)
Sorts the specified range of the specified target array of ints according to
IntComparator and
simultaneously permutes the coSort Objects array in the same way as the target array. |
static void |
ArraysUtil.quickSort(int[] target,
int fromIndex,
int toIndex,
IntComparator comparator)
Sorts the specified range of the specified target array of ints into order specified by
IntComparator
using quicksort. |
static void |
ArraysUtil.quickSort1(int[] target,
int fromIndex,
int length,
IntComparator comparator)
Sorts the specified range of the specified target array of ints into order specified by
IntComparator
using quicksort. |
Copyright © 2022. All rights reserved.