Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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