-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPathCompressedUF.java
More file actions
55 lines (49 loc) · 1.16 KB
/
PathCompressedUF.java
File metadata and controls
55 lines (49 loc) · 1.16 KB
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
55
package GraphTopic.UF;
/**
* 路径压缩版本的UF
*
* 只需要在find中添加一行代码
*/
public class PathCompressedUF {
private int count;
private int[] parent;
private int[] size;
public PathCompressedUF(int n) {
count = n;
parent = new int[n];
size = new int[n];
for (int i = 0; i < n; i++) {
parent[i] = i;
size[i] = 1;
}
}
public void union(int p , int q) {
int rootP = find(p);
int rootQ = find(q);
if (rootP == rootQ) {
return;
}
if (size[rootP] > size[rootQ]) {
parent[rootQ] = rootP;
size[rootP] += size[rootQ];
} else {
parent[rootP] = rootQ;
size[rootQ] += size[rootP];
}
count--;
}
private int find(int p) {
while (parent[p] != p) {
// 一行代码 进行路径压缩
parent[p] = parent[parent[p]];
p = parent[p];
}
return p;
}
public boolean connected(int p, int q) {
return find(p) == find(q);
}
public int count() {
return count;
}
}