DummyHeapWithoutReferences.prototype.merge = function (other) {
    this.array = this.array.concat(other.array).sort(this.compare);

    this.length += other.length;
};