Files
LeetCode-Go/leetcode/0114.Flatten-Binary-Tree-to-Linked-List/114. Flatten Binary Tree to Linked List_test.go
2020-08-27 00:58:22 +08:00

48 lines
802 B
Go

package leetcode
import (
"fmt"
"testing"
"github.com/halfrost/LeetCode-Go/structures"
)
type question114 struct {
para114
ans114
}
// para 是参数
// one 代表第一个参数
type para114 struct {
one []int
}
// ans 是答案
// one 代表第一个答案
type ans114 struct {
one []int
}
func Test_Problem114(t *testing.T) {
qs := []question114{
{
para114{[]int{1, 2, 3, 4, 5, 6}},
ans114{[]int{1, 2, 3, 4, 5, 6}},
},
}
fmt.Printf("------------------------Leetcode Problem 114------------------------\n")
for _, q := range qs {
_, p := q.ans114, q.para114
fmt.Printf("【input】:%v \n", p)
rootOne := structures.Ints2TreeNode(p.one)
flatten(rootOne)
fmt.Printf("【output】:%v \n", structures.Tree2Preorder(rootOne))
}
fmt.Printf("\n\n\n")
}