이해 후, 그냥 암기해라. class MinHeap { constructor() { this.heap = []; } // 힙의 크기를 반환 size() { return this.heap.length; } // 힙이 비어있는지 확인 isEmpty() { return this.size() === 0; } // 부모 노드의 인덱스를 반환 parentIndex(index) { return Math.floor((index - 1) / 2); } // 왼쪽 자식 노드의 인덱스를 반환 leftChildIndex(index) { return 2 * index + 1; } // ..