weighted_path 0.6.0

A Rust library for finding shortest paths in weighted graphs using Dijkstra's algorithm with multiple heap implementations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
5
Start
A
B
C
End
Start|A|1
Start|B|10
A|B|2
A|C|5
B|C|1
C|End|1
B|End|20