Skip to content

Commit 05365a1

Browse files
authored
Merge pull request #23 from cbloodsworth/Update-Readme
Updated Readme Documentation
2 parents 9cd4492 + 4be1f9e commit 05365a1

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
dijkstras-algorithm
22
===================
33

4-
Implementations of Dijkstra's shortest path algorithm in different languages. Head over to http://maxburstein.com/blog/introduction-to-graph-theory-finding-shortest-path/ to learn about implementing Dijkstra's algorithm. You can also learn about unit testing by visiting http://maxburstein.com/blog/introduction-to-unit-testing-in-python-and-ruby/.
4+
Implementations of Dijkstra's shortest path algorithm in different languages.
5+
Head over to http://maxburstein.com/blog/introduction-to-graph-theory-finding-shortest-path/ to learn about implementing Dijkstra's algorithm.
6+
You can also learn about unit testing by visiting http://maxburstein.com/blog/introduction-to-unit-testing-in-python-and-ruby/.
7+
8+
9+
## Usage Example:
10+
![Visualization](./graph.png)
11+
Each example should feature this graph and should print the path A->B->F->H in some format.
12+
ex. `py dijkstras.py` >>> \['H', 'F', 'B'\]
13+
14+
## Current Supported Languages:
15+
C++, C#, Java, Javascript, Typescript, Coffeescript, PHP, **Python**, **Ruby**, Scala
16+
*(Bolded languages have associated test-suites)*

0 commit comments

Comments
 (0)