这篇博客是从旧博客 WordPress 迁移过来,内容可能存在转换异常。
#define MAX **** //自己设置最大值
// father[x]表示x的父节点
int father[MAX];
// rank[x]表示x的秩
int rank[MAX];
// 初始化
void Make_Set(int n)
{
for(int i=1; i<=n; ++i)
{
father[i] = i;
rank[i] = 0;
}
}
// 查找
int Find_Set(int x)
{
if(x != father[x])
return Find_Set(father[x]);
return x;
}
// 合并
void Union(int x, int y)
{
x = Find_Set(x);
y = Find_Set(y);
if(x == y) // x,y在同一个集合
return;
if(rank[x] > rank[y])
father[y] = x;
else if(rank[x] < rank[y])
father[x] = y;
else
{
rank[y]++;
father[x] = y;
}
}