-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree_test.go
211 lines (197 loc) · 3.72 KB
/
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package avltree
import (
"math/rand"
"reflect"
"testing"
)
func TestNew(t *testing.T) {
type args struct {
threshold int
}
type insert struct {
key int
value string
}
tests := []struct {
name string
args args
insert []insert
want *AVLTree[int, string]
}{
{
args: args{
threshold: 1,
},
insert: []insert{
{key: 1, value: "hello"},
{key: 2, value: "world"},
{key: 76, value: "more"},
{key: 33, value: "hi"},
},
want: &AVLTree[int, string]{
root: &Node[int, string]{
Key: 2,
Value: "world",
Left: &Node[int, string]{
Key: 1,
Value: "hello",
},
Right: &Node[int, string]{
Key: 76,
Value: "more",
Left: &Node[int, string]{
Key: 33,
Value: "hi",
},
Height: 1,
},
Height: 2,
},
size: 4,
threshold: 1,
},
},
{
args: args{
threshold: -5,
},
insert: []insert{
{key: 1, value: "hello"},
{key: 2, value: "world"},
{key: 76, value: "more"},
{key: 33, value: "hi"},
},
want: &AVLTree[int, string]{
root: &Node[int, string]{
Key: 2,
Value: "world",
Left: &Node[int, string]{
Key: 1,
Value: "hello",
},
Right: &Node[int, string]{
Key: 76,
Value: "more",
Left: &Node[int, string]{
Key: 33,
Value: "hi",
},
Height: 1,
},
Height: 2,
},
size: 4,
threshold: 1,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tree := New[int, string](tt.args.threshold)
for _, kv := range tt.insert {
tree.Insert(kv.key, kv.value)
}
if got := tree; !reflect.DeepEqual(got, tt.want) {
t.Errorf("New() = %v, want %v", got, tt.want)
}
})
}
}
func TestAVLTree_Size(t *testing.T) {
type fields struct {
root *Node[int, string]
size uint
threshold int
}
tests := []struct {
name string
fields fields
want uint
}{
{
fields: fields{
root: &Node[int, string]{
Key: 5,
Left: &Node[int, string]{
Key: 2,
},
Height: 1,
},
size: 2,
},
want: 2,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tree := &AVLTree[int, string]{
root: tt.fields.root,
size: tt.fields.size,
threshold: tt.fields.threshold,
}
if got := tree.Size(); got != tt.want {
t.Errorf("Size() = %v, want %v", got, tt.want)
}
})
}
}
func TestAVLTree_RootKey(t *testing.T) {
type fields struct {
root *Node[int, string]
size uint
threshold int
}
tests := []struct {
name string
fields fields
want int
}{
{
fields: fields{
root: &Node[int, string]{
Key: 50,
},
size: 1,
threshold: 1,
},
want: 50,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tree := &AVLTree[int, string]{
root: tt.fields.root,
size: tt.fields.size,
threshold: tt.fields.threshold,
}
if got := tree.RootKey(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("RootKey() = %v, want %v", got, tt.want)
}
})
}
}
func helperCreateDataSetInt(b *testing.B) []int {
b.Helper()
return rand.New(rand.NewSource(int64(b.N))).Perm(b.N)
}
func BenchmarkAVLTree_Int_Int(b *testing.B) {
b.Run("insert", func(b *testing.B) {
tree := New[int, int](DefaultThreshold)
numbers := helperCreateDataSetInt(b)
b.ResetTimer()
for k := range numbers {
tree.Insert(k, 0)
}
})
b.Run("delete", func(b *testing.B) {
tree := New[int, int](DefaultThreshold)
numbers := helperCreateDataSetInt(b)
for k := range helperCreateDataSetInt(b) {
tree.Insert(k, 0)
}
b.ResetTimer()
for k := range numbers {
tree.Delete(k)
}
})
}