您好,登錄后才能下訂單哦!
#pragma once
#include<iostream>
using namespace std;
class UnionFindSet
{
public:
UnionFindSet(int n)
{
_n = n + 1;
_set = new int[_n];
for (int i = 1; i < _n; ++i)
{
_set[i] = -1;
}
}
int GetFriendSet(int n, int m, int r[][2])
{
for (int i = 0; i < m; ++i)
{
UnionfriendSet(r[i][0],r[i][1] );
}
int count = 0;
for (int i = 1; i < _n; ++i)
{
if (_set[i] <0)
++count;
}
return count;
}
void UnionfriendSet(int n,int m)
{
int root1 = GetRoot(n);
int root2 = GetRoot(m);
if (root1 != root2)
{
_set[root1] += _set[root2];
_set[root2] = root1;
}
}
int GetRoot(int x)
{
while (_set[x] >= 0)
{
x = _set[x];
}
return x;
}
protected:
int *_set;
size_t _n;
};
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。