-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathKruskal.cpp
83 lines (67 loc) · 1.87 KB
/
Kruskal.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
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
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct Edge {
int u, v, weight;
};
bool compareEdges(const Edge& a, const Edge& b) {
return a.weight < b.weight;
}
class UnionFind {
public:
vector<int> parent, rank;
UnionFind(int n) {
parent.resize(n);
rank.resize(n, 0);
for (int i = 0; i < n; i++) {
parent[i] = i;
}
}
int find(int x) {
if (x != parent[x]) {
parent[x] = find(parent[x]);
}
return parent[x];
}
void unionSets(int x, int y) {
int rootX = find(x);
int rootY = find(y);
if (rootX != rootY) {
if (rank[rootX] < rank[rootY]) {
parent[rootX] = rootY;
} else if (rank[rootX] > rank[rootY]) {
parent[rootY] = rootX;
} else {
parent[rootY] = rootX;
rank[rootX]++;
}
}
}
};
vector<Edge> kruskalMST(vector<Edge>& edges, int n) {
sort(edges.begin(), edges.end(), compareEdges);
vector<Edge> minimumSpanningTree;
UnionFind uf(n);
for (Edge edge : edges) {
if (uf.find(edge.u) != uf.find(edge.v)) {
minimumSpanningTree.push_back(edge);
uf.unionSets(edge.u, edge.v);
}
}
return minimumSpanningTree;
}
int main() {
int n, m; // Number of vertices and edges
cin >> n >> m;
vector<Edge> edges(m);
for (int i = 0; i < m; i++) {
cin >> edges[i].u >> edges[i].v >> edges[i].weight;
}
vector<Edge> minimumSpanningTree = kruskalMST(edges, n);
cout << "Minimum Spanning Tree Edges:\n";
for (Edge edge : minimumSpanningTree) {
cout << edge.u << " - " << edge.v << " : " << edge.weight << "\n";
}
return 0;
}