casacore
|
General indirect sort functions. More...
#include <GenSort.h>
Static Public Member Functions | |
static INX | sort (Vector< INX > &indexVector, const T *data, INX nr, Sort::Order=Sort::Ascending, int options=Sort::QuickSort) |
Sort a C-array containing nr T -type objects. More... | |
static INX | sort (Vector< INX > &indexVector, const Array< T > &data, Sort::Order=Sort::Ascending, int options=Sort::QuickSort) |
Sort a C-array containing nr T -type objects. More... | |
static INX | sort (Vector< INX > &indexVector, const Block< T > &data, INX nr, Sort::Order=Sort::Ascending, int options=Sort::QuickSort) |
Sort a C-array containing nr T -type objects. More... | |
static INX | kthLargest (T *data, INX nr, INX k) |
Find the index of the k-th largest value. More... | |
static INX | quickSort (INX *inx, const T *data, INX nr, Sort::Order, int options) |
Sort container using quicksort. More... | |
static INX | heapSort (INX *inx, const T *data, INX nr, Sort::Order, int options) |
Sort container using heapsort. More... | |
static INX | insSort (INX *inx, const T *data, INX nr, Sort::Order, int options) |
Sort container using insertion sort. More... | |
static INX | parSort (INX *inx, const T *data, INX nr, Sort::Order, int options, int nthreads=0) |
Sort container using parallel merge sort (using OpenMP). More... | |
Static Private Member Functions | |
static void | swapInx (INX &index1, INX &index2) |
Swap 2 indices. More... | |
static INX * | merge (const T *data, INX *inx, INX *tmp, INX nrrec, INX *index, INX nparts) |
Thedata buffer is divided in nparts parts. More... | |
static int | isAscending (const T *data, INX index1, INX index2) |
Check if 2 values are in ascending order. More... | |
static void | quickSortAsc (INX *inx, const T *, INX nr, Bool multiThread=False, Int rec_lim=128) |
Quicksort in ascending order. More... | |
static void | heapSortAsc (INX *inx, const T *, INX nr) |
Heapsort in ascending order. More... | |
static void | heapAscSiftDown (INX *inx, INX, INX, const T *) |
Helper function for ascending heapsort. More... | |
static INX | insSortAsc (INX *inx, const T *, INX nr, int option) |
Insertion sort in ascending order. More... | |
static INX | insSortAscDup (INX *inx, const T *, INX nr) |
Insertion sort in ascending order allowing duplicates. More... | |
static INX | insSortAscNoDup (INX *inx, const T *, INX nr) |
Insertion sort in ascending order allowing no duplicates. More... | |
General indirect sort functions.
Internal
This class is similar to GenSort. The only difference is that the functions in this class sort indirectly instead of in-place. They return the result of the sort as an sorted vector of indices This is slower, because an extra indirection is involved in each comparison. However, this sort allows to sort const data. Another advantage is that this sort is always stable (i.e. equal values are kept in their original order).
|
staticprivate |
Helper function for ascending heapsort.
|
static |
Sort container using heapsort.
|
staticprivate |
Heapsort in ascending order.
|
static |
Sort container using insertion sort.
|
staticprivate |
Insertion sort in ascending order.
|
staticprivate |
Insertion sort in ascending order allowing duplicates.
This is also used by quicksort for its last steps.
|
staticprivate |
Insertion sort in ascending order allowing no duplicates.
This is also used by the other sort algorithms to skip duplicates.
|
inlinestaticprivate |
|
static |
Find the index of the k-th largest value.
|
staticprivate |
Thedata
buffer is divided in nparts
parts.
In each part the values are in ascending order. The index tells the nr of elements in each part. Recursively each two subsequent parts are merged until only part is left (giving the sorted array). Alternately data
and tmp
are used for the merge result. The pointer containing the final result is returned.
If possible, merging the parts is done in parallel (using OpenMP).
|
static |
Sort container using parallel merge sort (using OpenMP).
By default the maximum number of threads is used.
|
static |
Sort container using quicksort.
The argument inx
gives the index defining the order of the values in the data array. Its length must be at least nr
and it must be filled with the index values of the data. Usually this is 0..nr, but it could contain a selection of the data.
|
staticprivate |
Quicksort in ascending order.
|
static |
Sort a C-array containing nr
T
-type objects.
The resulting index vector gives the sorted indices.
|
static |
Sort a C-array containing nr
T
-type objects.
The resulting index vector gives the sorted indices.
|
static |
Sort a C-array containing nr
T
-type objects.
The resulting index vector gives the sorted indices.
Referenced by casacore::genSort().
|
inlinestaticprivate |