Min-max heap


In computer science, a min-max heap is a complete binary tree data structure which combines the usefulness of both a min-heap and a max-heap, that is, it provides constant time retrieval and logarithmic time removal of both the minimum and maximum elements in it. This makes the min-max heap a very useful data structure to implement a double-ended priority queue. Like binary min-heaps and max-heaps, min-max heaps support logarithmic insertion and deletion and can be built in linear time. Min-max heaps are often represented implicitly in an array; hence it's referred to as an implicit data structure.
The min-max heap property is: each node at an even level in the tree is less than all of its descendants, while each node at an odd level in the tree is greater than all of its descendants.
The structure can also be generalized to support other order-statistics operations efficiently, such as find-median, delete-median,find and the operation delete, for any fixed value of k. These last two operations can be implemented in constant and logarithmic time, respectively. The notion of min-max ordering can be extended to other structures based on the max- or min-ordering, such as leftist trees, generating a new class of data structures. A min-max heap can also be useful when implementing an external quicksort.

Description

A max-min heap is defined analogously; in such a heap, the maximum value is stored at the root, and the smallest value is stored at one of the root's children.

Operations

In the following operations we assume that the min-max heap is represented in an array A; The location in the array will correspond to a node located on level in the heap.

Build

Creating a min-max heap is accomplished by an adaption of Floyd's linear-time heap construction algorithm, which proceeds in a bottom-up fashion. A typical Floyd's build-heap algorithm goes as follows:
function FLOYD-BUILD-HEAP:
for each index i from down to 1 do:
push-down
return h
In this function, h is the initial array, whose elements may not be ordered according to the min-max heap property. The push-down operation of a min-max heap is explained next.

Push Down

The push-down algorithm is as follows:
function PUSH-DOWN:
if i is on a min level then:
PUSH-DOWN-MIN
else:
PUSH-DOWN-MAX
endif'''

Push Down Min

function PUSH-DOWN-MIN:
if i has children then:
m := index of the smallest child or grandchild of i
if m is a grandchild of i then:
if
h < h then:
swap
h and h
if
h > h then:
swap
h and h
endif
PUSH-DOWN-MIN
endif
else if
h < h then:
swap
h and h''
endif
endif

Push Down Max

The algorithm for push-down-max is identical to that for push-down-min, but with all of the comparison operators reversed.
function PUSH-DOWN-MAX:
if i has children then:
m := index of the largest child or grandchild of i
if m is a grandchild of i then:
if h > h then:
swap h and h
if h < h then:
swap h and h
endif
PUSH-DOWN-MAX
endif
else if h > h then:
swap h and h
endif
endif

Iterative Form

As the recursive calls to push-down-min and push-down-max are in tail position, these functions can be trivially converted to purely iterative forms executing in constant space:
function PUSH-DOWN-MIN-ITER:
while m has children then:
i := m
m := index of the smallest child or grandchild of i
if m is a grandchild of i then:
if h < h then:
swap h and h
if h > h then:
swap h and h
endif
endif
else if h < h then:
swap h and h
endif
endwhile

Insertion

To add an element to a min-max heap perform following operations:
  1. Append the required key to the array representing the min-max heap. This will likely break the min-max heap properties, therefore we need to adjust the heap.
  2. Compare the new key to its parent:
  3. # If it is found to be less than the parent, then it is surely less than all other nodes on max levels that are on the path to the root of heap. Now, just check for nodes on min levels.
  4. # The path from the new node to the root should be in a descending order as it was before the insertion. So, we need to make a binary insertion of the new node into this sequence. Technically it is simpler to swap the new node with its parent while the parent is greater.
This process is implemented by calling the push-up algorithm described below on the index of the newly-appended key.

Push Up

The push-up algorithm is as follows:
function PUSH-UP:
if i is not the root then:
if i is on a min level then:
if h > h then:
swap h and h
PUSH-UP-MAX
else:
PUSH-UP-MIN
endif
else:
if h < h then:
swap h and h
PUSH-UP-MIN
else:
PUSH-UP-MAX
endif
endif
endif

Push Up Min

function PUSH-UP-MIN:
if i has a grandparent and h < h then:
swap h and h
PUSH-UP-MIN
endif

Push Up Max

As with the push-down operations, push-up-max is identical to push-up-min, but with comparison operators reversed:
function PUSH-UP-MAX:
if i has a grandparent and h > h then:
swap h and h
PUSH-UP-MAX
endif

Iterative Form

As the recursive calls to push-up-min and push-up-max are in tail position, these functions also can be trivially converted to purely iterative forms executing in constant space:
function PUSH-UP-MIN-ITER:
while i has a grandparent and h < h then:
swap h and h
i := grandparent
endwhile

Example

Here is one example for inserting an element to a Min-Max Heap.
Say we have the following min-max heap and want to insert a new node with value 6.
Initially, node 6 is inserted as a right child of the node 11. 6 is less than 11, therefore it is less than all the nodes on the max levels, and we need to check only the min levels. We should swap the nodes 6 and 11 and then swap 6 and 8. So, 6 gets moved to the root position of the heap, the former root 8 gets moved down to replace 11, and 11 becomes a right child of 8.
Consider adding the new node 81 instead of 6. Initially, the node is inserted as a right child of the node 11. 81 is greater than 11, therefore it is greater than any node on any of the min levels. Now, we only need to check the nodes on the max levels and make one swap.

Find Minimum

The minimum node of a Min-Max Heap is always located at the root. Find Minimum is thus a trivial constant time operation which simply returns the roots.

Find Maximum

The maximum node of a Min-Max Heap is always located on the first max level--i.e., as one of the immediate children of the root. Find Maximum thus requires at most one comparison, to determine which of the two children of the root is larger, and as such is also a constant time operation.

Remove Minimum

Removing the minimum is just a special case of removing an arbitrary node whose index in the array is known. In this case, the last element of the array is removed and used to replace the root, at the head of the array. push-down is then called on the root index to restore the heap property in time.

Remove Maximum

Removing the maximum is again a special case of removing an arbitrary node with known index. As in the Find Maximum operation, a single comparison is required to identify the maximal child of the root, after which it is replaced with the final element of the array and push-down is then called on the index of the replaced maximum to restore the heap property.

Extensions

The min-max-median heap is a variant of the min-max heap, suggested in the original publication on the structure, that supports the operations of an order statistic tree.