A binary heap (min-heap) is 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 the element at it's left and right child.
This Binary Heap is a min-heap implemented with one-based array (root is
element 1; children of element n are elements 2n and 2n+1) for simplicity.
Complexity: Space O(n), findMin O(1), insert O(logn), deleteMin O(logn),
buildHeap O(n);
class BinaryHeap {
private int nodes[];
private int size;
private int capacity;
public BinaryHeap(int...