-
Notifications
You must be signed in to change notification settings - Fork 62
/
level_tree_test.go
89 lines (83 loc) · 979 Bytes
/
level_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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package yiigo
import (
"encoding/json"
"testing"
)
type Demo struct {
ID int64 `json:"id"`
Pid int64 `json:"pid"`
Name string `json:"name"`
}
func (d *Demo) GetID() int64 {
return d.ID
}
func (d *Demo) GetPid() int64 {
return d.Pid
}
func TestTree(t *testing.T) {
var data = map[int64][]*Demo{
0: {
{
ID: 1,
Pid: 0,
Name: "1",
},
{
ID: 2,
Pid: 0,
Name: "2",
},
},
1: {
{
ID: 3,
Pid: 1,
Name: "3",
},
{
ID: 4,
Pid: 1,
Name: "4",
},
},
2: {
{
ID: 5,
Pid: 2,
Name: "5",
},
{
ID: 6,
Pid: 2,
Name: "6",
},
},
3: {
{
ID: 7,
Pid: 3,
Name: "7",
},
{
ID: 8,
Pid: 3,
Name: "8",
},
},
4: {
{
ID: 9,
Pid: 4,
Name: "9",
},
{
ID: 10,
Pid: 4,
Name: "10",
},
},
}
tree := BuildLevelTree(data, 0)
b, _ := json.Marshal(tree)
t.Log(string(b))
}