(Available since version 1.0)
Heap::insert — Inserts an element in the heap
Insert value
in the heap by sifting
it up. Runs in Θ(log(n)) amortized time, where n is the size
of the heap.
value
The value to insert.
TRUE
.