Versions in this module Expand all Collapse all v0 v0.1.1 May 29, 2024 v0.1.0 May 29, 2024 Changes in this version + type UnionFind struct + func New(numV int) *UnionFind + func (uf *UnionFind) Find(v int) int + func (uf *UnionFind) IsConnected(v1, v2 int) bool + func (uf *UnionFind) NumConnectedComponent() int + func (uf *UnionFind) Union(v1, v2 int)