Module union_find

Source
Expand description

UnionFind/Disjoint Set data structure implementation. This code was inspired by the union find implementation found in ‘Algorithms Fourth Edition’ by Robert Sedgewick and Kevin Wayne.

§Resources

Structs§

UnionFind
Vector-based union-find representing a set of disjoint sets.