并查集UFSet类

/*

Name: 并查集UFSet类

Copyright: 始发于goal00001111的专栏;允许自由转载,但必须注明作者和出处

Author: goal00001111

Date: 23-12-08 15:21

Description: 实现了普通的查找和合并的算法,也实现了压缩路径和按大小求并高效 算法,并对两者进行了测试比较。

有关算法的分析讨论详见拙作《一种简单而有趣的数据结构--并查集》:

http://blog.csdn.net/goal00001111/archive/2008/12/24/3595844.aspx

*/

#include <iostream>
#include <time.h>
using namespace std;
const int MAX = 50000; //集合的最大成员数量
class UFSet{ //并查集类
public:
UFSet(int s = MAX); //构造函数
UFSet(const UFSet & obj); //拷贝构造函数
~UFSet() //析构函数
{
delete []father;
}
UFSet & operator = (const UFSet & obj); //赋值函数
int FindFather(int pos); //寻找序号pos的族长大人
bool Unite(int posI, int posJ);//将成员posI和posJ合并到同一个家族
int FindFatherAndReducePath(int pos); //查找族长并压缩路径
bool UnionBySize (int posI, int posJ); //按大小求并
bool SameFamily(int posI, int posJ); //判断成员posI和posJ是否属于同一家族
void PrintUFSet();
private:
int *father; //并查集成员数组,存放各元素的父亲结点
int size; //并查集成员数量
};
UFSet::UFSet(int s) : size(s) //构造函数
{
father = new int[size + 1];
for (int i=0; i<=size; i++) //所有的数组元素值均初始化为-1
father[i] = -1;
}
UFSet::UFSet(const UFSet & obj) //拷贝构造函数
{
size = obj.size;
father = new int[size + 1];
for (int i=0; i<=size; i++)
father[i] = obj.father[i];
}
UFSet & UFSet::operator = (const UFSet & obj) //赋值函数
{
if (this == &obj) //检查自赋值
return *this;
delete []father; //释放原有的内存资源
size = obj.size; //分配新的内存资源,并复制内容
father = new int[size + 1];
for (int i=0; i<=size; i++)
father[i] = obj.father[i];
return *this; //返回本对象的引用
}
int UFSet::FindFather(int pos)//寻找序号pos的族长大人。若pos本身是族长,则返回 自身
{
if (father[pos] < 0)
return pos;
return FindFather(father[pos]);
}
bool UFSet::Unite(int posI, int posJ)//将成员posI和posJ合并到同一个家族
{
//首先各自去寻找自己的族长
int fI = FindFather(posI);
int fJ = FindFather(posJ);
if (fI == fJ) //如果是同一个族长门下,不必合并,即合并失败
return false;
else
father[fJ] = fI; //否则fI当族长:谁让posI站在posJ的前面呢!
return true;
}
int UFSet::FindFatherAndReducePath(int pos)//查找族长并压缩路径
{
if (father[pos] < 0)
return pos;
//若自己不是族长,则找到族长后,将所途经的结点均指向族长
return father[pos] = FindFatherAndReducePath(father[pos]);
}
bool UFSet::UnionBySize(int posI, int posJ)//按大小求并
{
//首先各自去寻找自己的族长
int fI = FindFatherAndReducePath(posI);
int fJ = FindFatherAndReducePath(posJ);
if (fI == fJ) //如果是同一个族长门下,不必合并,即合并失败
return false;
else if (father[fI] < father[fJ])
{//如果族长fI的实力比fJ强,即|fI|>|fJ|,则fI当族长,并修改father[fI]和 father[fJ]
father[fI] += father[fJ];
father[fJ] = fI;
}
else //否则fJ当族长
{
father[fJ] += father[fI];
father[fI] = fJ;
}
return true;
}
bool UFSet::SameFamily(int posI, int posJ)//判断成员posI和posJ是否属于同一家族
{
return FindFatherAndReducePath(posI) == FindFatherAndReducePath(posJ);
}
void UFSet::PrintUFSet()//输出集合的所有元素
{
for (int i=0; i<=size; i++)
cout << father[i] << ' ';
cout << endl;
}
int main()
{
time_t startTime, endTime;
UFSet obj;
int p, q;
time(&startTime);
for (int i=0; i<MAX; i++)
{
p = rand() % MAX + 1;
q = rand() % MAX + 1;
if (p == q)
continue;
//cout << p << "-" << q << " ";
// if (i % 10 == 0)
// cout << endl;
obj.Unite(p, q);
}
while (1)
{
p = rand() % MAX + 1;
q = rand() % MAX + 1;
if (p == q)
continue;
if (obj.SameFamily(p, q))
cout << endl << p << "≡" << q << endl;
else
cout << endl << p << "!≡" << q << endl;
break;
}
time(&endTime);
cout << difftime(endTime, startTime) << endl;
//////////////////////////////////////////////////////////////////////////
time(&startTime);
for (int i=0; i<MAX; i++)
{
p = rand() % MAX + 1;
q = rand() % MAX + 1;
if (p == q)
continue;
//cout << p << "-" << q << " ";
// if (i % 10 == 0)
// cout << endl;
obj.UnionBySize(p, q);
}
while (1)
{
p = rand() % MAX + 1;
q = rand() % MAX + 1;
if (p == q)
continue;
if (obj.SameFamily(p, q))
cout << endl << p << "≡" << q << endl;
else
cout << endl << p << "!≡" << q << endl;
break;
}
time(&endTime);
cout << difftime(endTime, startTime) << endl;
system("pause");
return 0;
}

时间: 2024-09-28 17:34:00

并查集UFSet类的相关文章

poj 1182 食物链:经典!种类并查集

链接: http://poj.org/problem?id=1182 原题: Description 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形.A吃B, B吃C,C吃A. 现有N个动物,以1-N编号.每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种. 有人用两种说法对这N个动物所构成的食物链关系进行描述: 第一种说法是"1 X Y",表示X和Y是同类. 第二种说法是"2 X Y",表示X吃Y. 此人对N个动物,用上述两种说法,

数据结构 之 并查集(Disjoint Set)

一.并查集的概念:     首先,为了引出并查集,先介绍几个概念:     1.等价关系(Equivalent Relation)     自反性.对称性.传递性.     如果a和b存在等价关系,记为a~b.     2.等价类:     一个元素a(a属于S)的等价类是S的一个子集,它包含所有与a有关系的元素.注意,等价类形成对S的一个划分:S的每一个成员恰好互斥地出现在一个等价类中.为了确定是否a~b,我们仅需验证a和b是否属于同一个等价类即可.     3.并查集:     即为等价类,

【POJ 1182 食物链】并查集

此题按照<挑战程序设计竞赛(第2版)>P89的解法,不容易想到,但想清楚了代码还是比较直观的. 并查集模板(包含了记录高度的rank数组和查询时状态压缩) 1 const int MAX_N=50002*3; 2 int par[MAX_N]; 3 int rank[MAX_N]; 4 //初始化,根为自身,高度为0 5 void init(int scab) 6 { 7 for(int i=1;i<=scab;i++) 8 { 9 par[i]=i; 10 rank[i]=0; 11

C++实现并查集实例

并查集这个很有意思,并查集是一种树型的数据结构,用于处理一些不相交集合(Disjoint Sets)的合并及查询问题.昨天看书看到了,然后用C++简单实现了下.在Dijkstra算法中,用来判断两个顶点是否在同一个集合里. 里面定义了两个类,都是并查集,一个是QuickFind,查找很快,一个是QuickUnion,合并较快.写了一些注释,有一些优化的提示.看代码吧,有什么问题指出来吧. QuickFind的实现 #include "QuickFind.h" QuickFind::Qu

图的生成树(森林)(克鲁斯卡尔Kruskal算法和普里姆Prim算法)、以及并查集的使用

图的连通性问题:无向图的连通分量和生成树,所有顶点均由边连接在一起,但不存在回路的图. 设图 G=(V, E) 是个连通图,当从图任一顶点出发遍历图G 时,将边集 E(G) 分成两个集合 T(G) 和 B(G).其中 T(G)是遍历图时所经过的边的集合,B(G) 是遍历图时未经过的边的集合.显然,G1(V, T) 是图 G 的极小连通子图,即子图G1 是连通图 G 的生成树. 深度优先生成森林   右边的是深度优先生成森林: 连通图的生成树不一定是唯一的,不同的遍历图的方法得到不同的生成树;从不

并查集(Disjoint Set)

在一些有N个元素的集合应用问题中,我们通常是在开始时让每个元素构成一个单元素的集合,然后按一定顺序将属于同一组的元素所在的集合合并,其间要反复查找一个元素在哪个集合中.这一类问题其特点是看似并不复杂,但数据量极大,若用正常的数据结构来描述的话,往往在空间上过大,计算机无法承受:即使在空间上勉强通过,运行的时间复杂度也极高,根本就不可能在规定的运行时间(1-3秒)内计算出试题需要的结果,只能用并查集来描述. 定义 并查集(Disjoint Set),即"不相交集合",是一种树型的数据结构

HDU 3038 How Many Answers Are Wrong? :带权并查集

链接: http://acm.hdu.edu.cn/showproblem.php?pid=3038 题目: Problem Description TT and FF are ... friends. Uh... very very good friends -________-b FF is a bad boy, he is always wooing TT to play the following game with him. This is a very humdrum game. T

poj 1456 Supermarket:贪心, 并查集

链接: http://poj.org/problem?id=1456 题目: Description A supermarket has a set Prod of products on sale. It earns a profit px for each product x∈Prod sold by a deadline dx that is measured as an integral number of time units starting from the moment the

HDU 2818 Building Block, poj 1988 Cube Stacking:带权并查集

链接: HDU: http://acm.hdu.edu.cn/showproblem.php?pid=2818 POJ:  http://poj.org/problem?id=1988 题目: Problem Description John are playing with blocks. There are N blocks (1 <= N <= 30000) numbered 1...N.Initially, there are N piles, and each pile contai