-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKruskal_algorithm.cpp
107 lines (90 loc) · 1.66 KB
/
Kruskal_algorithm.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
Title : Program to implement Kruskal’s algorithm to find Minimum Cost Spanning Tree.
*/
#include <iostream>
using namespace std;
int visited[10];
class Kruskal
{
public:
int edge, mincost, n, i, j, cost[10][10], min, u, v, a, b;
Kruskal()
{
edge = 1;
mincost = 0;
}
void read();
void Kus(int cost[10][10], int n);
};
void Kruskal::read()
{
cout << "Enter Number Vertices -->>";
cin >> n;
cout << "Enter The Adjacency Matrix -->>\n";
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
cin >> cost[i][j];
if (cost[i][j] == 0)
{
cost[i][j] = 9999;
}
}
}
Kus(cost, n);
}
void Kruskal::Kus(int cost[10][10], int n)
{
while (edge < n)
{
min = 9999;
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
if (cost[i][j] < min)
{
min = cost[i][j];
a = u = i;
b = v = j;
}
}
}
while (visited[u])
u = visited[u];
while (visited[v])
v = visited[v];
cout << endl;
if (u != v)
{
edge++;
cout << "Edge " << a << " -->> " << b << " Weight " << min << endl;
mincost = mincost + min;
visited[v] = u;
}
cost[a][b] = cost[b][a] = 9999;
}
cout << "Min Cost -->> " << mincost;
}
int main()
{
Kruskal G;
G.read();
}
/* OutPut -
Enter Number Vertices -->>6
Enter The Adjacency Matrix -->>
0 2 3 0 0 0
2 0 5 3 4 0
3 5 0 0 4 0
0 3 0 0 2 3
0 4 4 2 0 5
0 0 3 0 0 0
Edge 0 -->> 1 Weight 2
Edge 3 -->> 4 Weight 2
Edge 0 -->> 2 Weight 3
Edge 1 -->> 3 Weight 3
Edge 3 -->> 5 Weight 3
Min Cost -->> 13
*/