Files
LeetCode-Go/leetcode/0144.Binary-Tree-Preorder-Traversal/144. Binary Tree Preorder Traversal_test.go
2020-08-27 00:58:22 +08:00

57 lines
870 B
Go

package leetcode
import (
"fmt"
"testing"
"github.com/halfrost/LeetCode-Go/structures"
)
type question144 struct {
para144
ans144
}
// para 是参数
// one 代表第一个参数
type para144 struct {
one []int
}
// ans 是答案
// one 代表第一个答案
type ans144 struct {
one []int
}
func Test_Problem144(t *testing.T) {
qs := []question144{
{
para144{[]int{}},
ans144{[]int{}},
},
{
para144{[]int{1}},
ans144{[]int{1}},
},
{
para144{[]int{1, structures.NULL, 2, 3}},
ans144{[]int{1, 2, 3}},
},
}
fmt.Printf("------------------------Leetcode Problem 144------------------------\n")
for _, q := range qs {
_, p := q.ans144, q.para144
fmt.Printf("【input】:%v ", p)
root := structures.Ints2TreeNode(p.one)
fmt.Printf("【output】:%v \n", preorderTraversal(root))
}
fmt.Printf("\n\n\n")
}