Properties

Link copied to clipboard

Reversible iterable that is a view on elements of that heap.

Link copied to clipboard
open override val isDisposed: Boolean

Flag of being disposed.

Link copied to clipboard

Linked reified set that is a view on nodes of that heap.

Link copied to clipboard
Link copied to clipboard
open override val size: UInt

Number of elements in the collection.

Functions

Link copied to clipboard
open override fun add(element: Element, priority: Priority): LinkedHeapNode<Element, Priority>

Adds the element with corresponding priority to the heap and returns constructed node that corresponds to the element and the priority.

Link copied to clipboard
open override fun dispose()

Disposes the structure and its dependent ones.

Link copied to clipboard
open override fun popMinimum(): LinkedHeapNode<Element, Priority>

Retrieves the root node and removes it from the heap. It is a node with the minimum priority.

Link copied to clipboard

Retrieves the root node. It is a node with the minimum priority.