Categorygithub.com/benjivesterby/graph
modulepackage
0.0.1
Repository: https://github.com/benjivesterby/graph.git
Documentation: pkg.go.dev

# README

graph

Build Status Go Report Card GoDoc License: MIT

# Constants

BFS is the constant for Breadth First Search.
DFS is the constant for Depth First Search.

# Structs

Graphy is the graphy struct for building and searching the graph.
No description provided by the author
Node is the interface representation of a node in the graph.

# Interfaces

DirectedEdge is the interface that defines a directional edge in the graph.
DirectedWeightedEdge is the interface that defines a directional weighted edge in the graph.
Edge is the interface that defines an edge in the graph.
WeightedEdge is the interface that defines an undirected weighted edge in the graph.