Uses of Interface
org.jheaps.Heap
Packages that use Heap
Package
Description
Interfaces
Heaps using an array representation
Monotone heaps
Heaps using an explicit "pointer-based" tree representation
-
Uses of Heap in org.jheaps
Subinterfaces of Heap in org.jheapsModifier and TypeInterfaceDescriptioninterface
A double-ended heap.interface
DoubleEndedValueHeap<K,
V> A double-ended heap with values.interface
A heap that allows melding with another heap.interface
ValueHeap<K,
V> A heap with values. -
Uses of Heap in org.jheaps.array
Classes in org.jheaps.array that implement HeapModifier and TypeClassDescription(package private) class
Abstract implementation of a heap using an array representation.(package private) class
An abstract weak heap with an array representation.class
An array based binary weak heap using bulk insertion.class
An array based binary heap.class
An optimized array-based binary heap with integer keys.class
An array based binary weak heap.class
An array based d-ary heap.class
An array based binary MinMax heap. -
Uses of Heap in org.jheaps.monotone
Classes in org.jheaps.monotone that implement HeapModifier and TypeClassDescription(package private) class
Base abstract implementation of a radix heap.class
A radix heap forBigInteger
keys.class
A radix heap for double keys.class
A radix heap for (signed) integer keys.class
A radix heap for (signed) long keys. -
Uses of Heap in org.jheaps.tree
Classes in org.jheaps.tree that implement Heap