1. Binary Heap Binary Heap(이하 BH)은 BST보다 간단하다. MAX인지 MIN인지에 따라서 부모가 자식보다 크냐 아님 작으냐로 구분하기만 하면 된다. 형제노드사이의 관계는 전혀 없다. 그냥 부모보다 작으면 된다. 그럼 영어로 설명을 적어보겠다. Binary heap -- Very similar to a binary search tree, but with some different rules! In a MaxBinaryHeap the parent is greater than the children, but there are no guarantees between sibling nodes. A binary heap is as compact as possible. All the children of each node are as full as they can be and left children are filled out first.