Skip to content

Commit a3047f8

Browse files
committed
S51
1 parent 5b63d81 commit a3047f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bellmanFord/src/main/java/com/mycompany/bellmanford/CreateGraph.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CreateEdge {
3030
for (int i = 0; i < e; ++i)
3131
edge[i] = new CreateEdge();
3232
}
33-
33+
//the Bellman-Ford algorithm
3434
void BellmanFord(CreateGraph graph, int s) {
3535
int V = graph.V, E = graph.E;
3636
int dist[] = new int[V];

0 commit comments

Comments
 (0)