Skip to content

Commit

Permalink
Merge pull request TheAlgorithms#358 from LeeChungWan/Graphs
Browse files Browse the repository at this point in the history
Modified Data Structures/Graphs folder .java file name and class name
  • Loading branch information
varunu28 authored Dec 15, 2017
2 parents 9d9c86c + 707f6f1 commit dcf7f8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Data Structures/Graphs/BFS.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Unknown
*
*/
public class bfs{
public class BFS{

/**
* The BFS implemented in code to use.
Expand Down
2 changes: 1 addition & 1 deletion Data Structures/Graphs/DFS.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
*/

public class dfs{
public class DFS{

/**
* Implementation in code of a DFS
Expand Down
2 changes: 1 addition & 1 deletion Data Structures/Graphs/PrimMST.java
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand Down

0 comments on commit dcf7f8f

Please sign in to comment.