Skip to content

Commit 46582b8

Browse files
author
Michal Zarnecki
committed
directory reference for Bellman-Ford
1 parent 4661257 commit 46582b8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

DIRECTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* [Stack](./DataStructures/Stack.php)
2424

2525
## Graphs
26+
* [Bellmanford](./Graphs/BellmanFord.php)
2627
* [Breadthfirstsearch](./Graphs/BreadthFirstSearch.php)
2728
* [Depthfirstsearch](./Graphs/DepthFirstSearch.php)
2829

Graphs/BellmanFord.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ function bellmanFord(array $verticesNames, array $edges, string $start, bool $ve
4949
$round++;
5050
}
5151
return $vertices;
52-
}
52+
}

0 commit comments

Comments
 (0)