Very similar to a binary search tree, but with some different rules MaxBinaryHeap: parent nodes are always larger than child nodes Only rule : A child must be smaller than the parent. MinBinaryHeap: parent nodes are always smaller than child nodes left child is added and then a right child. No guarantees between sibling nodes (So again, no implied ordering between siblings.) used to implement Pr..