Versions in this module Expand all Collapse all v0 v0.1.0 Apr 8, 2024 Changes in this version + func UndirectedGraphBFS[T comparable](g *UndirectedGraph[T], start T) []T + func UndirectedGraphDFS[T comparable](g *UndirectedGraph[T], start T) []T + type UndirectedGraph struct + func NewUndirectedGraph[T comparable](v int) *UndirectedGraph[T] + func (g *UndirectedGraph[T]) AddEdge(s, t T)