forked from halfrost/LeetCode-Go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path100. Same Tree_test.go
73 lines (58 loc) · 1.19 KB
/
100. Same Tree_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package leetcode
import (
"fmt"
"testing"
"github.com/halfrost/LeetCode-Go/structures"
)
type question100 struct {
para100
ans100
}
// para 是参数
// one 代表第一个参数
type para100 struct {
one []int
two []int
}
// ans 是答案
// one 代表第一个答案
type ans100 struct {
one bool
}
func Test_Problem100(t *testing.T) {
qs := []question100{
question100{
para100{[]int{}, []int{}},
ans100{true},
},
question100{
para100{[]int{}, []int{1}},
ans100{false},
},
question100{
para100{[]int{1}, []int{1}},
ans100{true},
},
question100{
para100{[]int{1, 2, 3}, []int{1, 2, 3}},
ans100{true},
},
question100{
para100{[]int{1, 2}, []int{1, structures.NULL, 2}},
ans100{false},
},
question100{
para100{[]int{1, 2, 1}, []int{1, 1, 2}},
ans100{false},
},
}
fmt.Printf("------------------------Leetcode Problem 100------------------------\n")
for _, q := range qs {
_, p := q.ans100, q.para100
fmt.Printf("【input】:%v ", p)
rootOne := structures.Ints2TreeNode(p.one)
rootTwo := structures.Ints2TreeNode(p.two)
fmt.Printf("【output】:%v \n", isSameTree(rootOne, rootTwo))
}
fmt.Printf("\n\n\n")
}