Module union_find

Source
Expand description

Module containing the UnionFind lattice and aliases for different datastructures.

Structs§

UnionFind
Union-find lattice.

Type Aliases§

UnionFindArrayMap
Array-backed UnionFind lattice.
UnionFindBTreeMap
std::collections::BTreeMap-backed UnionFind lattice.
UnionFindHashMap
std::collections::HashMap-backed UnionFind lattice.
UnionFindOptionMap
Option-backed UnionFind lattice.
UnionFindSingletonMap
crate::collections::SingletonMap-backed UnionFind lattice.
UnionFindVec
Vec-backed UnionFind lattice.