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
pub mod heap;
pub mod heap_unsafe;

pub use heap::{FibonacciHeap, Node};
pub use heap_unsafe::{UnsafeFibonacciHeap, UnsafeNode};