You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
510 B

package main
import (
"fmt"
student "student"
"./correct"
)
func main() {
root := &correct.TreeNode{Data: "08"}
rootS := &student.TreeNode{Data: "08"}
pos := []string{
"x",
"z",
"y",
"t",
"r",
"q",
"01",
"b",
"c",
"a",
"d",
}
for _, arg := range pos {
root = correct.BTreeInsertData(root, arg)
rootS = student.BTreeInsertData(rootS, arg)
}
correct.ChallengeTree("BTreeApplyPreorder", correct.BTreeApplyPreorder, student.BTreeApplyPreorder, root, rootS, fmt.Println)
}