forked from TheAlgorithms/Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisjoint_set_union.rs
95 lines (92 loc) · 2.57 KB
/
disjoint_set_union.rs
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
pub struct DSUNode {
parent: usize,
size: usize,
}
pub struct DisjointSetUnion {
nodes: Vec<DSUNode>,
}
// We are using both path compression and union by size
impl DisjointSetUnion {
// Create n+1 sets [0, n]
pub fn new(n: usize) -> DisjointSetUnion {
let mut nodes = Vec::new();
nodes.reserve_exact(n + 1);
for i in 0..=n {
nodes.push(DSUNode { parent: i, size: 1 });
}
DisjointSetUnion { nodes }
}
pub fn find_set(&mut self, v: usize) -> usize {
if v == self.nodes[v].parent {
return v;
}
self.nodes[v].parent = self.find_set(self.nodes[v].parent);
self.nodes[v].parent
}
// Returns the new component of the merged sets,
// or std::usize::MAX if they were the same.
pub fn merge(&mut self, u: usize, v: usize) -> usize {
let mut a = self.find_set(u);
let mut b = self.find_set(v);
if a == b {
return std::usize::MAX;
}
if self.nodes[a].size < self.nodes[b].size {
std::mem::swap(&mut a, &mut b);
}
self.nodes[b].parent = a;
self.nodes[a].size += self.nodes[b].size;
a
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn create_acyclic_graph() {
let mut dsu = DisjointSetUnion::new(10);
// Add edges such that vertices 1..=9 are connected
// and vertex 10 is not connected to the other ones
let edges: Vec<(usize, usize)> = vec![
(1, 2), // +
(2, 1),
(2, 3), // +
(1, 3),
(4, 5), // +
(7, 8), // +
(4, 8), // +
(3, 8), // +
(1, 9), // +
(2, 9),
(3, 9),
(4, 9),
(5, 9),
(6, 9), // +
(7, 9),
];
let expected_edges: Vec<(usize, usize)> = vec![
(1, 2),
(2, 3),
(4, 5),
(7, 8),
(4, 8),
(3, 8),
(1, 9),
(6, 9),
];
let mut added_edges: Vec<(usize, usize)> = Vec::new();
for (u, v) in edges {
if dsu.merge(u, v) < std::usize::MAX {
added_edges.push((u, v));
}
// Now they should be the same
assert!(dsu.merge(u, v) == std::usize::MAX);
}
assert_eq!(added_edges, expected_edges);
let comp_1 = dsu.find_set(1);
for i in 2..=9 {
assert_eq!(comp_1, dsu.find_set(i));
}
assert_ne!(comp_1, dsu.find_set(10));
}
}