Skip to content
/ rs-graph Public

Rust implementation of Graph ADT using Adjacency List Structure

License

Notifications You must be signed in to change notification settings

pag4k/rs-graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rs-graph

Rust implementation of Graph ADT using Adjacency List Structure

Features

  • Support only directed Graph.
  • Vertices contain a variable of generic type.
  • Vertices and egdes refered to using indices.
  • Can be used in a wrapper struct to hide the use of these indices. See for example rs-pathfinder library.

Todo

  • Add option to include a generic type to edges.
  • Add option to remove vertices and edges.
  • Replace indices by generational indices. This could be done using generational-arena library.

Authors

  • Pierre-André Gagnon - Initial work - pag4k

License

  • This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

  • Based on Dr. Aiman Hanna COMP352 Data Structure and Algorithm course notes.

About

Rust implementation of Graph ADT using Adjacency List Structure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages