Gets the current number of elements in the max-heap.
The number of elements in the heap.
Makes the MaxHeap
iterable.
Note: The traversal follows the order of the underlying array, not the priority order.
Optional
reversed: boolean = falseIf true
, the iterator will traverse the heap in reverse order.
An iterator yielding heap elements in the specified order.
Adds a new element to the heap while maintaining the max-heap property.
The element to add to the heap.
Clears the heap by removing all elements.
Decreases the key value of a heap element by a specified amount.
The element to modify.
Amount to decrease the key by.
true
if element was found and modified, false
otherwise.
Returns an iterator for traversing all elements in the max-heap.
Note: The traversal follows the order of the underlying array, not the priority order.
Optional
reversed: boolean = falseIf true
, the iterator will traverse the heap in reverse order.
An iterator yielding heap elements in the specified order.
Increases the key value of a heap element by a specified amount.
The element to modify.
Amount to increase the key by.
true
if element was found and modified, false
otherwise.
Returns an iterator for traversing just the key values in the max-heap.
Note: The traversal follows the order of the underlying array, not the priority order.
Optional
reversed: boolean = falseIf true
, the iterator will traverse the heap in reverse order.
An iterator yielding heap element keys in the specified order.
Returns the maximum element (root) of the max-heap without removing it.
The maximum element or undefined
if the heap is empty.
Removes and returns the maximum element (root) from the max-heap.
The maximum element or undefined
if the heap is empty.
Removes a specific element from anywhere in the max-heap.
The element to remove.
true
if element was found and removed, false
otherwise.
A concrete implementation of a max-heap data structure.
In a max-heap, for any given node, the node's key value is greater than or equal to the key values of its children.