We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 415a9b4 commit fbc1bdeCopy full SHA for fbc1bde
README.md
@@ -32,6 +32,7 @@ An algorithm is a finite sequence of well-defined, computer-implementable instru
32
* [Breadth-first search](src/algorithms/graph/breadth-first-search) - traverse a graph, explore neighbor vertices first;
33
* [Depth-first search](src/algorithms/graph/depth-first-search) - traverse a graph, explore descendant vertices first;
34
* [Dijkstra](src/algorithms/graph/dijkstra) - find the shortest path between two vertices in a graph, return a shortest-path tree;
35
+ * [Bellman-Ford](src/algorithms/graph/bellman-ford) - find the shortest path in a graph with negative edges, return a shortest-path tree;
36
37
## How to use this repository
38
0 commit comments