Properties

Link copied to clipboard

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

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 var 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 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.