Skip to content

Commit 956e6e5

Browse files
authored
Update and rename prim.java to PrimMST.java
1 parent a7a8e19 commit 956e6e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/Graphs/prim.java renamed to data_structures/Graphs/PrimMST.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.lang.*;
66
import java.io.*;
77

8-
class MST
8+
class PrimMST
99
{
1010
// Number of vertices in the graph
1111
private static final int V=5;
@@ -113,4 +113,4 @@ public static void main (String[] args)
113113
// Print the solution
114114
t.primMST(graph);
115115
}
116-
}
116+
}

0 commit comments

Comments
 (0)