-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrimsAlgorithm.java
64 lines (60 loc) · 1.26 KB
/
PrimsAlgorithm.java
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
package Unit_2;
import java.util.*;
public class PrimsAlgorithm {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int e, V, u = 0, v = 0, sum = 0, s = 0, minCost = Integer.MAX_VALUE;
boolean flag = false;
System.out.print("Enter the number of vertices : ");
V = sc.nextInt();
int cost[][] = new int[V][V];
int sol[] = new int[V];
System.out.print("Enter the cost matrix of graph : ");
for(int i = 0; i < V; i++)
{
for(int j = 0; j < V; j++)
{
cost[i][j] = sc.nextInt();
if(cost[i][j] != 0 && minCost > cost[i][j])
{
minCost = cost[i][j];
s = i;
}
}
sol[i] = 0;
}
sol[s] = 1;
e = 1;
while(e <= V - 1)
{
int min = 99;
for(int i = 0; i < V; i++)
{
for(int j = 0; j < V; j++)
{
if(sol[i] == 1 && sol[j] == 0)
{
if(i != j && min > cost[i][j] && cost[i][j] != 0)
{
min = cost[i][j];
u = i;
v = j;
}
}
}
}
sol[v] = 1;
sum += min;
e++;
System.out.println(u + " - " + v + " -> " + min);
}
for(int i = 0; i < V; i++)
if(sol[i] == 0)
flag = true;
if(flag)
System.out.println("No spanning tree");
else
System.out.println("The cost of minimum spanning tree is "+sum);
sc.close();
}
}