()
| 20 | } |
| 21 | |
| 22 | poll() { |
| 23 | if (this.heap.length === 0) return undefined; |
| 24 | const top = this.heap[0]; |
| 25 | this.heap[0] = this.heap[this.heap.length - 1]; |
| 26 | this.heap.pop(); |
| 27 | this.heapifyDown(); |
| 28 | return top; |
| 29 | } |
| 30 | |
| 31 | isEmpty() { |
| 32 | return this.heap.length === 0; |
nothing calls this directly
no test coverage detected