| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.booleans |
Provides type-specific classes for boolean elements or keys.
|
| 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 support array.
|
static void |
BooleanBigArrays.quickSort(boolean[][] x,
BooleanComparator comp)
Sorts the specified big array according to the order induced by the specified
comparator using quicksort.
|
static void |
BooleanBigArrays.quickSort(boolean[][] x,
long from,
long to,
BooleanComparator comp)
Sorts the specified range of elements according to the order induced by the specified
comparator using quicksort.
|
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 © 2013. All Rights Reserved.