Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrVertexNotFound represents vertex not found. ErrVertexNotFound = errors.New("vertex not found") // ErrVertexInvalid represents vertex invalid. ErrVertexInvalid = errors.New("vertex invalid") // ErrVertexAlreadyExists represents vertex already exists. ErrVertexAlreadyExists = errors.New("vertex already exists") // ErrParnetAlreadyExists represents parent of vertex already exists. ErrParnetAlreadyExists = errors.New("parent of vertex already exists") // ErrChildAlreadyExists represents child of vertex already exists. ErrChildAlreadyExists = errors.New("child of vertex already exists") // ErrCycleBetweenVertices represents cycle between vertices. ErrCycleBetweenVertices = errors.New("cycle between vertices") )
Functions ¶
This section is empty.
Types ¶
type DG ¶
type DG[T comparable] interface { // AddVertex adds vertex to graph. AddVertex(id string, value T) error // DeleteVertex deletes vertex graph. DeleteVertex(id string) // GetVertex gets vertex from graph. GetVertex(id string) (*Vertex[T], error) // GetVertices returns map of vertices. GetVertices() map[string]*Vertex[T] // GetRandomVertices returns random map of vertices. GetRandomVertices(n uint) []*Vertex[T] // GetSourceVertices returns source vertices. GetSourceVertices() []*Vertex[T] // GetSinkVertices returns sink vertices. GetSinkVertices() []*Vertex[T] // VertexCount returns count of vertices. VertexCount() uint64 // AddEdge adds edge between two vertices. AddEdge(fromVertexID, toVertexID string) error // DeleteEdge deletes edge between two vertices. DeleteEdge(fromVertexID, toVertexID string) error // CanAddEdge indicates whether can add edge between two vertices. CanAddEdge(fromVertexID, toVertexID string) bool // DeleteVertexInEdges deletes inedges of vertex. DeleteVertexInEdges(id string) error // DeleteVertexOutEdges deletes outedges of vertex. DeleteVertexOutEdges(id string) error }
DG is the interface used for directed graph.
type Vertex ¶
type Vertex[T comparable] struct { ID string Value T Parents set.Set[*Vertex[T]] Children set.Set[*Vertex[T]] }
Vertex is a vertex of the directed graph.
func NewVertex ¶
func NewVertex[T comparable](id string, value T) *Vertex[T]
New returns a new Vertex instance.
Click to show internal directories.
Click to hide internal directories.