Uses of Interface
elki.utilities.datastructures.heap.ObjectHeap
-
Packages that use ObjectHeap Package Description elki.clustering.correlation Correlation clustering algorithms.elki.outlier.distance Distance-based outlier detection algorithms, such as DBOutlier and kNN.elki.utilities.datastructures.heap Heap structures and variations such as bounded priority heaps. -
-
Uses of ObjectHeap in elki.clustering.correlation
Methods in elki.clustering.correlation with parameters of type ObjectHeap Modifier and Type Method Description private CASHInterval
CASH. determineNextIntervalAtMaxLevel(ObjectHeap<CASHInterval> heap)
Determines the next ''best'' interval at maximum level, i.e. the next interval containing the most unprocessed objects.private CASHInterval
CASH. doDetermineNextIntervalAtMaxLevel(ObjectHeap<CASHInterval> heap)
Recursive helper method to determine the next ''best'' interval at maximum level, i.e. the next interval containing the most unprocessed objectsprivate void
CASH. initHeap(ObjectHeap<CASHInterval> heap, Relation<ParameterizationFunction> relation, int dim, DBIDs ids)
Initializes the heap with the root intervals. -
Uses of ObjectHeap in elki.outlier.distance
Fields in elki.outlier.distance declared as ObjectHeap Modifier and Type Field Description ObjectHeap<DoubleDBIDPair>
HilOut.HilFeature. nn
Heap with the nearest known neighborsprivate ObjectHeap<HilOut.HilFeature>
HilOut.HilbertFeatures. out
"OUT"private ObjectHeap<HilOut.HilFeature>
HilOut.HilbertFeatures. wlb
"WLB"Constructors in elki.outlier.distance with parameters of type ObjectHeap Constructor Description HilFeature(DBID id, ObjectHeap<DoubleDBIDPair> nn)
Constructor. -
Uses of ObjectHeap in elki.utilities.datastructures.heap
Classes in elki.utilities.datastructures.heap that implement ObjectHeap Modifier and Type Class Description class
ComparableMaxHeap<K extends java.lang.Comparable<? super K>>
Binary heap for primitive types.class
ComparableMinHeap<K extends java.lang.Comparable<? super K>>
Binary heap for primitive types.class
ComparatorMaxHeap<K>
Binary heap for primitive types.class
ComparatorMinHeap<K>
Binary heap for primitive types.
-