From 707f6f1ea831cd9be5ef872299496b5d4bf8d210 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 15 Dec 2017 15:13:13 +0900 Subject: [PATCH] Modified Data Structures/Graphs folder .java file name and class name --- Data Structures/Graphs/BFS.java | 2 +- Data Structures/Graphs/DFS.java | 2 +- Data Structures/Graphs/PrimMST.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Data Structures/Graphs/BFS.java b/Data Structures/Graphs/BFS.java index 4f3bd62d339c..d06a66068632 100644 --- a/Data Structures/Graphs/BFS.java +++ b/Data Structures/Graphs/BFS.java @@ -6,7 +6,7 @@ * @author Unknown * */ -public class bfs{ +public class BFS{ /** * The BFS implemented in code to use. diff --git a/Data Structures/Graphs/DFS.java b/Data Structures/Graphs/DFS.java index 8ceba166e149..747fcbed5dfc 100644 --- a/Data Structures/Graphs/DFS.java +++ b/Data Structures/Graphs/DFS.java @@ -7,7 +7,7 @@ * */ -public class dfs{ +public class DFS{ /** * Implementation in code of a DFS diff --git a/Data Structures/Graphs/PrimMST.java b/Data Structures/Graphs/PrimMST.java index 9d8c2d358c04..25695050275c 100644 --- a/Data Structures/Graphs/PrimMST.java +++ b/Data Structures/Graphs/PrimMST.java @@ -100,7 +100,7 @@ public static void main (String[] args) | / \ | (3)-------(4) 9 */ - MST t = new MST(); + PrimMST t = new PrimMST(); int graph[][] = new int[][] {{0, 2, 0, 6, 0}, {2, 0, 3, 8, 5}, {0, 3, 0, 0, 7},