| 11 | // Functions: insert, delete, peek, isEmpty, print, heapSort, sink |
| 12 | |
| 13 | class MinPriorityQueue { |
| 14 | // calls the constructor and initializes the capacity |
| 15 | constructor(c) { |
| 16 | this.heap = [] |
nothing calls this directly
no outgoing calls
no test coverage detected