sssp-lib
A Rust library for Single Source Shortest Path (SSSP) algorithms in graphs.
This crate provides an efficient implementation of SSSP using a bounded-memory shortest path algorithm, suitable for large graphs with constraints on memory and computation.
Installation
Add this to your Cargo.toml:
[]
= "0.1.0"
Usage
Basic Example
use SSSPAlgorithm;
Generating Random Graphs for Testing
use SSSPAlgorithm;
Documentation
Full API documentation is available at docs.rs/sssp-lib.
License
Licensed under the Apache License, Version 2.0. See LICENSE for details.
Contributing
Contributions are welcome! Please open an issue or submit a pull request.