并查集详解

通过find函数找出该节点的根节点,
通过UNION函数将两棵树合并。
加入rank[N]来记录每个节点的秩(即树的高度),并按秩进行合并,可避免合并时的最糟糕情况,(树形为一条直线)

通过路径压缩可以减少每次寻找根节点的次数。

下面通过HDU1232(畅通工程)来进行分析:

Code

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;

const int SIZE = 1005;
int root[SIZE];
int ranks[SIZE];

int find(int x)//查找并且路径压缩(非递归的路径压缩)
{
	int y = x;
	while (root[y] != y) {
		y = root[y];
	}

	int temp, head = y;
	y = x;
	while (root[y] != y) {
		temp = root[y];
		root[y] = head;
		y = temp;
	}

	return head;
};

void UNION(int x, int y)//按秩合并
{
	int f1 = find(x);
	int f2 = find(y);

	if (ranks[f1] <= ranks[f2]) {
		root[f1] = f2;
		if (ranks[f1] == ranks[f2]) {
			ranks[f2] ++;
		}
	} else {
		root[f2] = f1;
	}
};

int main()
{
	int N, M, s, e, count;
	while (scanf("%d%d",&N,&M)!=EOF, N) {
		for (int i = 1; i <= N; ++ i)
			root[i] = i,ranks[i] = 1;
       //memset(ranks,1,sizeof(ranks));
		for (int i = 0; i < M; ++ i) {
			scanf("%d%d",&s,&e);
			UNION(s,e);
		}

		count = -1;
		for (int i = 1; i <= N; ++ i) {
			if (root[i] == i)
				++ count;
		}

		printf("%d\n",count);
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值