| 4972 | * Used in Dijkstra's algorithm to achieve O((V + E) log V) complexity. |
| 4973 | */ |
| 4974 | class MinHeap<T> { |
| 4975 | private heap: T[] = []; |
| 4976 | private compareFn: (a: T, b: T) => number; |
| 4977 |
nothing calls this directly
no outgoing calls
no test coverage detected