An open API service indexing awesome lists of open source software.

https://github.com/isutare412/graph

Go implementations of graph algorithms like Dijkstra, A*, etc.
https://github.com/isutare412/graph

Last synced: 4 months ago
JSON representation

Go implementations of graph algorithms like Dijkstra, A*, etc.

Awesome Lists containing this project

README

        

# Graph

Go implementations of common graph algorithms like Dijkstra, A*, Minimam
spanning tree, etc.

## Current support

- Directional graph.
- Bidirectional graph.
- Shortest paths. (Dijkstra)

## Install

```
go get -d github.com/isutare412/graph
```