Union-find
(Mylib/DataStructure/UnionFind/unionfind.cpp)
Operations
UnionFind(n)
-
root_of(int i)
-
is_same(int i, int j)
-
merge(int i, int j)
-
i
とj
を同じ連結成分にし、その連結成分のrootを返す。
-
size_of(int i)
-
count_group()
Requirements
Notes
Problems
References
Required by
Verified with
Code
Back to top page