(compare)
| 2 | // 长度是K的堆 |
| 3 | class Heap{ |
| 4 | constructor(compare){ |
| 5 | this.arr = [0] //忽略0这个索引 |
| 6 | this.compare = compare?compare:(a,b)=>a>b |
| 7 | } |
| 8 | get size(){ |
| 9 | return this.arr.length-1 |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected