pub type BinaryHeap<T> = DaryHeap<T, 2>;
A binary heap (d = 2).
pub struct BinaryHeap<T> { /* private fields */ }