(compare)
| 15 | |
| 16 | class Heap{ |
| 17 | constructor(compare){ |
| 18 | this.arr = [0] //忽略0这个索引 |
| 19 | this.compare = compare?compare:(a,b)=>a>b |
| 20 | } |
| 21 | get size(){ |
| 22 | return this.arr.length-1 |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected