Definitions for "Binary Heap"
Keywords:  heap, rightmost, biggest, tree, queue
a complete binary tree, where some rightmost nodes of the last level may be absent
a complete binary tree with elements from a partially ordered set, such that the element at every node is less than (or equal to) the element at its left child and the element at its right child
a data structure that can efficiently support the basic priority-queue operations