mirror of https://github.com/01-edu/public.git
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.
37 lines
578 B
37 lines
578 B
5 years ago
|
package student_test
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
solutions "./solutions"
|
||
|
student "./student"
|
||
|
)
|
||
|
|
||
|
func TestBTreeApplyInorder(t *testing.T) {
|
||
|
root := &solutions.TreeNode{Data: "08"}
|
||
|
rootS := &student.TreeNode{Data: "08"}
|
||
|
var pos []string
|
||
|
|
||
|
pos = append(pos,
|
||
|
"x",
|
||
|
"z",
|
||
|
"y",
|
||
|
"t",
|
||
|
"r",
|
||
|
"q",
|
||
|
"01",
|
||
|
"b",
|
||
|
"c",
|
||
|
"a",
|
||
|
"d",
|
||
|
)
|
||
|
|
||
|
for _, arg := range pos {
|
||
|
root = solutions.BTreeInsertData(root, arg)
|
||
|
rootS = student.BTreeInsertData(rootS, arg)
|
||
|
}
|
||
|
|
||
|
solutions.ChallengeTree(t, solutions.BTreeApplyInorder, student.BTreeApplyInorder, root, rootS, fmt.Println)
|
||
|
}
|