Removes the element with the minimum value. Complexity: O(log n)
Inserts t into the container. Complexity: O(1)
Steals the elements of other and inserts them (in bulk) into this container.
Property returning true if and only if the container has no elements. Complexity: O(1)
Returns the number of elements in the container. Complexity: O(1)
Returns the minimum element of the container. Complexity: O(1)
The number of bytes allocated per element inserted.
A sequential Pairing Heap implementation of a priority queue of elements T using allocator Alloc.