You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/search/searchtree_debug.go

33 lines
561 B
Go

// +build debug
package search
import "fmt"
func (t *Tree) Print() {
if t.root.item == nil {
fmt.Println("/")
} else {
fmt.Printf("/:%#v\n", t.root.item)
}
printNode(t.root, 1)
}
func printNode(n *node, depth int) {
indent := make([]byte, depth)
for i := 0; i < len(indent); i++ {
indent[i] = '\t'
}
for _, children := range n.children {
for k, v := range children {
if v.item == nil {
fmt.Printf("%s%s\n", string(indent), k)
} else {
fmt.Printf("%s%s:%#v\n", string(indent), k, v.item)
}
printNode(v, depth+1)
}
}
}