Graph.prototype.dsitr = function* (u) {
        for (const {v} of this.succ.get(u)) yield v;
    };