simple-graph

Crates.iosimple-graph
lib.rssimple-graph
version0.1.1
sourcesrc
created_at2022-11-14 20:42:09.098898
updated_at2023-01-10 10:39:34.959803
descriptionGraph library with ability to serialize/deserialize Trivial Graph Format
homepage
repositoryhttps://github.com/StackOverflowExcept1on/simple-graph
max_upload_size
id715179
size54,847
(StackOverflowExcept1on)

documentation

README

simple-graph

Build Status Latest Version Documentation

Graph library with ability to serialize/deserialize Trivial Graph Format

This library implements structure Graph<V, E> with adjacency list, NOT the adjacency matrix. This feature allows to optimize memory consumption.

Besides serialize/deserialize library can deal with graph algorithms such as Depth-first search (DFS) and Breadth-first search (BFS). You can see the difference here:

graphAlgorithms

Code examples?

Commit count: 15

cargo fmt