Heap constructor
Heap([
- dynamic cmp
Implementation
Heap([cmp]) {
this.cmp = cmp != null ? cmp : defaultCmp;
this.nodes = [];
}
Heap([cmp]) {
this.cmp = cmp != null ? cmp : defaultCmp;
this.nodes = [];
}