Package | Description |
---|---|
org.codelibs.jhighlight.fastutil.booleans |
Modifier and Type | Method and Description |
---|---|
static void |
BooleanArrays.mergeSort(boolean[] a,
BooleanComparator comp)
Sorts an array according to the order induced by the specified
comparator using mergesort.
|
static void |
BooleanArrays.mergeSort(boolean[] a,
int from,
int to,
BooleanComparator comp)
Sorts the specified range of elements according to the order induced by the specified
comparator using mergesort.
|
static void |
BooleanArrays.mergeSort(boolean[] a,
int from,
int to,
BooleanComparator comp,
boolean[] supp)
Sorts the specified range of elements according to the order induced by the specified
comparator using mergesort, using a given pre-filled support array.
|
static void |
BooleanArrays.quickSort(boolean[] x,
BooleanComparator comp)
Sorts an array according to the order induced by the specified
comparator using quicksort.
|
static void |
BooleanArrays.quickSort(boolean[] x,
int from,
int to,
BooleanComparator comp)
Sorts the specified range of elements according to the order induced by the specified
comparator using quicksort.
|
Copyright © 2011–2024. All rights reserved.