https://github.com/maxmindlin/graph-stuff
https://github.com/maxmindlin/graph-stuff
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxmindlin/graph-stuff
- Owner: maxmindlin
- Created: 2022-05-09T01:08:12.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-11T20:20:06.000Z (about 4 years ago)
- Last Synced: 2025-02-01T14:30:56.456Z (over 1 year ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A playground repo for me to explore graph implementations and algorithms. Nothing here is considered done.
## TODO
- [ ] many of the algorithms are implemented across a generic *adjacency-matrix* graph. For many algorithms this is actually sub-optimal. Implement a adjacency-list graph and then have the algorithms being generic over either.