Files
LeetCode-Go/leetcode/0508.Most-Frequent-Subtree-Sum/508. Most Frequent Subtree Sum_test.go
2020-08-27 00:58:22 +08:00

67 lines
976 B
Go

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