From 956e6e5c3a126e764662b9d96c651b378f475880 Mon Sep 17 00:00:00 2001 From: Varun Upadhyay Date: Wed, 18 Oct 2017 07:11:14 -0700 Subject: [PATCH] Update and rename prim.java to PrimMST.java --- data_structures/Graphs/{prim.java => PrimMST.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename data_structures/Graphs/{prim.java => PrimMST.java} (99%) diff --git a/data_structures/Graphs/prim.java b/data_structures/Graphs/PrimMST.java similarity index 99% rename from data_structures/Graphs/prim.java rename to data_structures/Graphs/PrimMST.java index 4bc5e36b9..2d3660862 100644 --- a/data_structures/Graphs/prim.java +++ b/data_structures/Graphs/PrimMST.java @@ -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); } -} \ No newline at end of file +}