Uses of Interface
elki.utilities.datastructures.QuickSelect.Adapter
-
Packages that use QuickSelect.Adapter Package Description elki.index.distancematrix Precomputed distance matrix.elki.utilities.datastructures Basic memory structures such as heaps and object hierarchies. -
-
Uses of QuickSelect.Adapter in elki.index.distancematrix
Classes in elki.index.distancematrix that implement QuickSelect.Adapter Modifier and Type Class Description classPrecomputedDistanceMatrix.PrecomputedDistancePrioritySearcherRange query using the distance matrix. -
Uses of QuickSelect.Adapter in elki.utilities.datastructures
Fields in elki.utilities.datastructures declared as QuickSelect.Adapter Modifier and Type Field Description static QuickSelect.Adapter<byte[]>QuickSelect. BYTE_ADAPTERAdapter for byte arrays.static QuickSelect.Adapter<char[]>QuickSelect. CHAR_ADAPTERAdapter for char arrays.static QuickSelect.Adapter<double[]>QuickSelect. DOUBLE_ADAPTERAdapter for double arrays.static QuickSelect.Adapter<float[]>QuickSelect. FLOAT_ADAPTERAdapter for float arrays.static QuickSelect.Adapter<int[]>QuickSelect. INTEGER_ADAPTERAdapter for integer arrays.static QuickSelect.Adapter<long[]>QuickSelect. LONG_ADAPTERAdapter for long arrays.static QuickSelect.Adapter<short[]>QuickSelect. SHORT_ADAPTERAdapter for short arrays.Methods in elki.utilities.datastructures with parameters of type QuickSelect.Adapter Modifier and Type Method Description private static <T> voidQuickSelect. insertionSort(T data, QuickSelect.Adapter<T> adapter, int start, int end)Sort a small array using repetitive insertion sort.static <T> voidQuickSelect. quickSelect(T data, QuickSelect.Adapter<T> adapter, int start, int end, int rank)QuickSelect is essentially quicksort, except that we only "sort" that half of the array that we are interested in.
-