-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathunion-find.cpp
54 lines (49 loc) · 1.32 KB
/
union-find.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Quick Union
class UnionFind {
public:
UnionFind(int sz) : root(sz), rank(sz) {
for (int i = 0; i < sz; i++) root[i] = i, rank[i] = 1;
}
// path compression
int find(int x) {
if (x == root[x]) return x;
return root[x] = find(root[x]);
}
// rank based
void unionSetRankBased(int x, int y) {
int rootX = find(x), rootY = find(y);
if (rootX != rootY) {
if (rank[rootX] > rank[rootY]) root[rootY] = rootX;
else if (rank[rootX] < rank[rootY]) root[rootX] = rootY;
else {
root[rootY] = rootX;
rank[rootX]++;
}
}
}
bool connected(int x, int y) {
return find(x) == find(y);
}
private:
vector<int> root, rank;
};
// Test Case
int main() {
// for displaying booleans as literal strings, instead of 0 and 1
cout << boolalpha;
UnionFind uf(10);
// 1-2-5-6-7 3-8-9 4
uf.unionSet(1, 2);
uf.unionSet(2, 5);
uf.unionSet(5, 6);
uf.unionSet(6, 7);
uf.unionSet(3, 8);
uf.unionSet(8, 9);
cout << uf.connected(1, 5) << endl; // true
cout << uf.connected(5, 7) << endl; // true
cout << uf.connected(4, 9) << endl; // false
// 1-2-5-6-7 3-8-9-4
uf.unionSet(9, 4);
cout << uf.connected(4, 9) << endl; // true
return 0;
}