Package | Description |
---|---|
cern.colt |
Core base classes; Operations on primitive arrays such as sorting, partitioning and permuting.
|
cern.colt.list.tfloat |
Resizable list holding elements of float data type.
|
cern.colt.matrix.tfloat.algo |
Linear Algebraic matrix computations operating on
FloatMatrix2D
and FloatMatrix1D . |
Modifier and Type | Method and Description |
---|---|
static void |
Sorting.mergeSort(float[] a,
int fromIndex,
int toIndex,
FloatComparator c)
Sorts the specified range of the specified array of elements according to
the order induced by the specified comparator.
|
static void |
Sorting.parallelQuickSort(float[] a,
int fromIndex,
int toIndex,
FloatComparator c)
Multithreaded quicksort
|
static void |
Sorting.quickSort(float[] a,
int fromIndex,
int toIndex,
FloatComparator c)
Sorts the specified range of the specified array of elements according to
the order induced by the specified comparator.
|
static void |
ParallelQuickSort.quickSort(float[] x,
int off,
int len,
FloatComparator comp,
int nThreads)
Multithreaded quicksort.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractFloatList.mergeSortFromTo(int from,
int to,
FloatComparator c)
Sorts the receiver according to the order induced by the specified
comparator.
|
void |
AbstractFloatList.quickSortFromTo(int from,
int to,
FloatComparator c)
Sorts the receiver according to the order induced by the specified
comparator.
|
Modifier and Type | Method and Description |
---|---|
FloatMatrix1D |
FloatSorting.sort(FloatMatrix1D vector,
FloatComparator c)
Sorts the vector into ascending order, according to the order induced by
the specified comparator.
|
int[] |
FloatSorting.sortIndex(FloatMatrix1D vector,
FloatComparator c)
Sorts indexes of the
vector according to the comparator
c . |
Jump to the Parallel Colt Homepage