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