UnionFind

Type Alias UnionFind 

Source
pub type UnionFind = UnionFindBase<UnionBySize, PathCompression, (), (), ()>;

Aliased Type§

pub struct UnionFind {
    cells: Vec<UfCell<UnionBySize, (), ()>>,
    merger: (),
    history: (),
    _marker: PhantomData<fn() -> PathCompression>,
}

Fields§

§cells: Vec<UfCell<UnionBySize, (), ()>>§merger: ()§history: ()§_marker: PhantomData<fn() -> PathCompression>