You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,13 @@
1
-
# Dijkstra.NET Dijkstra algorithm in [C#]
1
+
# Dijkstra.NET Dijkstra algorithm in [C#][](https://www.nuget.org/packages/Dijkstra.NET)
2
2
3
3
Dijkstra algorithm which use priority queue thus complexity is equal O(ElogV) where E is number of edges and V is number of vertices. Used data structures are based on interfaces so you can implement your own or reused present. Simply example below. More information about algorithm you can find on the [wikipedia](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm).
4
4
5
-
## Installation
5
+
## Get Started
6
+
Install the latest version from NuGet
6
7
7
-
From [Nuget](https://www.nuget.org/packages/Dijkstra.NET)
8
+
```
9
+
Install-Package Dijkstra.NET
10
+
```
8
11
9
12
## Simple example
10
13
@@ -20,6 +23,7 @@ var dijkstra = new Dijkstra<int, string>(graph);
20
23
DijkstraResultresult=dijkstra.Process(0, 1); //result contains the shortest path
0 commit comments