func (v *Vertex[L]) Dfs(f func(*Vertex[L]), seen map[*Vertex[L]]bool) {
seen[v] = true
f(v)
for next, isEdge := range v.Neighbours {
if isEdge && !seen[next] {
next.Dfs(f, seen)
}
}
}
Dfs is a method of type *Vertex : the receiver is the start node.
The function f is a parameter of the traversal method.
Start with an empty map as initial seen parameter.
Vertex has a type parameter L as its node label.
The function f is a parameter of the traversal method.
Start with an empty map as initial seen parameter.
Vertex has a type parameter L as its node label.
func (v *Vertex) Dfs(f func(*Vertex), seen map[*Vertex]bool) {
seen[v] = true
f(v)
for next, isEdge := range v.Neighbours {
if isEdge && !seen[next] {
next.Dfs(f, seen)
}
}
}
Dfs is a method of type *Vertex : the receiver is the start node.
The function f is a parameter of the traversal method.
Start with an empty map as initial seen parameter.
The function f is a parameter of the traversal method.
Start with an empty map as initial seen parameter.