Skip to content

Commit 3b37120

Browse files
committed
S45
1 parent 84d7f15 commit 3b37120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bFS/src/main/java/com/mycompany/bfs/Graph.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void addEdge(int v, int w) {
3232
adj[w].add(v);
3333
}
3434
}
35-
35+
//breadth-first search
3636
void BFS(int s) {
3737

3838
boolean visited [] = new boolean[V];

0 commit comments

Comments
 (0)