Update and rename prim.java to PrimMST.java

This commit is contained in:
Varun Upadhyay 2017-10-18 07:11:14 -07:00 committed by GitHub
parent a7a8e192a2
commit 956e6e5c3a

View File

@ -5,7 +5,7 @@ import java.util.*;
import java.lang.*;
import java.io.*;
class MST
class PrimMST
{
// Number of vertices in the graph
private static final int V=5;
@ -113,4 +113,4 @@ class MST
// Print the solution
t.primMST(graph);
}
}
}