Skip to content

Commit d0a2045

Browse files
committed
readme
1 parent 3e08e8e commit d0a2045

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A pretty good implementation of Dijkstra's shortest-path algorithm for Deno.
55
If you ever run into a problem that can be represented as a graph where the solution has something to do with finding the shortest path between nodes, this algorithm is nothing short of magical. It is well worth the time to learn how to use it, even if you don't really understand how the algorithm works.
66

77
This implementation of Dijkstra'a algorithm is able to process large in-memory graphs. It will perform
8-
reasonably well even when the number of edges is in the millions. The performance is `O(n*log(n))`.
8+
reasonably well even when the number of edges is in the millions. The performance is `O(n*log(n))`, where `n` is proportional to the number of nodes plus the number of edges in the graph.
99

1010
This code was adapted to Typescript from
1111
[A Walkthrough of Dijkstra's Algorithm (In JavaScript!)](https://medium.com/@adriennetjohnson/a-walkthrough-of-dijkstras-algorithm-in-javascript-e94b74192026)

0 commit comments

Comments
 (0)