Skip to content

sauerbraten/graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Graph

A thread-safe implementation of a graph data structure in Go. See https://en.wikipedia.org/wiki/Graph_(abstract_data_type) for more information. This implementation is weighted, but undirected.

There is also a version of this package that supports storing values in the graph nodes so that the graph can be used as a data store: https://github.com/sauerbraten/graph-store

Usage

Get the package:

$ go get github.com/sauerbraten/graph/v2

Import the package:

import (
	"github.com/sauerbraten/graph/v2"
)

Documentation

For full package documentation, visit http://godoc.org/github.com/sauerbraten/graph.

About

A thread-safe implementation of a graph data structure, written in Go (http://golang.org/).

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages