func (root *Tree) Bfs(f func(*Tree)) {
if root == nil {
return
}
queue := []*Tree{root}
for len(queue) > 0 {
t := queue[0]
queue = queue[1:]
f(t)
queue = append(queue, t.Children...)
}
}
Bfs is a method of type *Tree, and takes function f as an argument.
The queue grows and shrinks during traversal, until all nodes have been visited.
The queue grows and shrinks during traversal, until all nodes have been visited.