码迷,mamicode.com
首页 > 其他好文 > 详细

图论——并查集

时间:2015-01-24 18:47:09      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

/*
	并查集模板
		by:mfcheer
*/

#include <iostream>  
#include <cstdio>  
#include <string>  
#include <cstring>  
#include <cstdlib>  
#include <algorithm>  
#include <vector>  
#include <set>  
#include <map>  

using namespace std;
#define N 100010

int n, m;
int fa[N];

int findd(int x)
{
	if (fa[x] == -1)
		return x;
	else
		return fa[x] = findd(fa[x]);
}

void un(int x, int y)
{
	int fx = findd(x);
	int fy = findd(y);
	if (fx == fy)
		return;
	fa[fx] = fy;
}

int main()
{
	memset(fa, -1, sizeof(fa));
	while (cin >> n >> m)
	{
		un(n,m);
	}
	return 0;
}


图论——并查集

标签:

原文地址:http://blog.csdn.net/u014427196/article/details/43087169

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!