Skip to content

Commit

Permalink
dijkstra: doc updated
Browse files Browse the repository at this point in the history
  • Loading branch information
arnauddri committed Feb 2, 2015
1 parent 0649674 commit 67d01d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Classic algorithms and data structures implemented in Go
* [Kosaraju's Algorithm (find all SCCs)](https://github.com/arnauddri/algorithms/tree/master/algorithms/graphs/kosaraju) [(wiki)](http://en.wikipedia.org/wiki/Kosaraju%27s_algorithm)

**Shortest path:**
* [bfsShortestPath](https://github.com/arnauddri/algorithms/tree/master/algorithms/graphs/bfs-shortest-path)
* [Breadth First Search Shortest Path](https://github.com/arnauddri/algorithms/tree/master/algorithms/graphs/bfs-shortest-path) [(wiki)](http://en.wikipedia.org/wiki/Breadth-first_search)
* [Dijkstra](https://github.com/arnauddri/algorithms/tree/master/algorithms/graphs/dijkstra) [(wiki)](http://en.wikipedia.org/wiki/Dijkstra%27s_algorithm)

**Sorting:**
* [Topological Sort](https://github.com/arnauddri/algorithms/tree/master/algorithms/graphs/topological-sort) [(wiki)](http://en.wikipedia.org/wiki/Topological_sorting)
Expand Down

0 comments on commit 67d01d1

Please sign in to comment.