Expand description
Module containing the UnionFind
lattice and aliases for different datastructures.
Structs§
- Union
Find - Union-find lattice.
Type Aliases§
- Union
Find Array Map - Array-backed
UnionFind
lattice. - Union
FindB Tree Map std::collections::BTreeMap
-backedUnionFind
lattice.- Union
Find Hash Map std::collections::HashMap
-backedUnionFind
lattice.- Union
Find Option Map Option
-backedUnionFind
lattice.- Union
Find Singleton Map crate::collections::SingletonMap
-backedUnionFind
lattice.- Union
Find Vec Vec
-backedUnionFind
lattice.