-
Notifications
You must be signed in to change notification settings - Fork 22
/
treap_test.go
273 lines (246 loc) · 7.18 KB
/
treap_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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package gtreap
import (
"bytes"
"testing"
)
func stringCompare(a, b interface{}) int {
return bytes.Compare([]byte(a.(string)), []byte(b.(string)))
}
func TestTreap(t *testing.T) {
x := NewTreap(stringCompare)
if x == nil {
t.Errorf("expected NewTreap to work")
}
tests := []struct {
op string
val string
pri int
exp string
}{
{"get", "not-there", -1, "NIL"},
{"ups", "a", 100, ""},
{"get", "a", -1, "a"},
{"ups", "b", 200, ""},
{"get", "a", -1, "a"},
{"get", "b", -1, "b"},
{"ups", "c", 300, ""},
{"get", "a", -1, "a"},
{"get", "b", -1, "b"},
{"get", "c", -1, "c"},
{"get", "not-there", -1, "NIL"},
{"ups", "a", 400, ""},
{"get", "a", -1, "a"},
{"get", "b", -1, "b"},
{"get", "c", -1, "c"},
{"get", "not-there", -1, "NIL"},
{"del", "a", -1, ""},
{"get", "a", -1, "NIL"},
{"get", "b", -1, "b"},
{"get", "c", -1, "c"},
{"get", "not-there", -1, "NIL"},
{"ups", "a", 10, ""},
{"get", "a", -1, "a"},
{"get", "b", -1, "b"},
{"get", "c", -1, "c"},
{"get", "not-there", -1, "NIL"},
{"del", "a", -1, ""},
{"del", "b", -1, ""},
{"del", "c", -1, ""},
{"get", "a", -1, "NIL"},
{"get", "b", -1, "NIL"},
{"get", "c", -1, "NIL"},
{"get", "not-there", -1, "NIL"},
{"del", "a", -1, ""},
{"del", "b", -1, ""},
{"del", "c", -1, ""},
{"get", "a", -1, "NIL"},
{"get", "b", -1, "NIL"},
{"get", "c", -1, "NIL"},
{"get", "not-there", -1, "NIL"},
{"ups", "a", 10, ""},
{"get", "a", -1, "a"},
{"get", "b", -1, "NIL"},
{"get", "c", -1, "NIL"},
{"get", "not-there", -1, "NIL"},
{"ups", "b", 1000, "b"},
{"del", "b", -1, ""}, // cover join that is nil
{"ups", "b", 20, "b"},
{"ups", "c", 12, "c"},
{"del", "b", -1, ""}, // cover join second return
{"ups", "a", 5, "a"}, // cover upsert existing with lower priority
}
for testIdx, test := range tests {
switch test.op {
case "get":
i := x.Get(test.val)
if i != test.exp && !(i == nil && test.exp == "NIL") {
t.Errorf("test: %v, on Get, expected: %v, got: %v", testIdx, test.exp, i)
}
case "ups":
x = x.Upsert(test.val, test.pri)
case "del":
x = x.Delete(test.val)
}
}
}
func load(x *Treap, arr []string) *Treap {
for i, s := range arr {
x = x.Upsert(s, i)
}
return x
}
func visitExpect(t *testing.T, x *Treap, start string, arr []string, arrDesc []string) {
n := 0
x.VisitAscend(start, func(i Item) bool {
if i.(string) != arr[n] {
t.Errorf("expected visit item: %v, saw: %v", arr[n], i)
}
n++
return true
})
if n != len(arr) {
t.Errorf("expected # visit callbacks: %v, saw: %v", len(arr), n)
}
n = 0
x.VisitDescend(start, func(i Item) bool {
if i.(string) != arrDesc[n] {
t.Errorf("expected visit descend item: %v, saw: %v", arr[n], i)
}
n++
return true
})
if n != len(arrDesc) {
t.Errorf("expected # visit descend callbacks: %v, saw: %v", len(arr), n)
}
}
func TestVisit(t *testing.T) {
x := NewTreap(stringCompare)
visitExpect(t, x, "a", []string{}, []string{})
x = load(x, []string{"e", "d", "c", "c", "a", "b", "a"})
visitX := func() {
visitExpect(t, x, "", []string{"a", "b", "c", "d", "e"}, []string{})
visitExpect(t, x, "0", []string{"a", "b", "c", "d", "e"}, []string{})
visitExpect(t, x, "a", []string{"a", "b", "c", "d", "e"}, []string{"a"})
visitExpect(t, x, "a1", []string{"b", "c", "d", "e"}, []string{"a"})
visitExpect(t, x, "b", []string{"b", "c", "d", "e"}, []string{"b", "a"})
visitExpect(t, x, "b1", []string{"c", "d", "e"}, []string{"b", "a"})
visitExpect(t, x, "c", []string{"c", "d", "e"}, []string{"c", "b", "a"})
visitExpect(t, x, "c1", []string{"d", "e"}, []string{"c", "b", "a"})
visitExpect(t, x, "d", []string{"d", "e"}, []string{"d", "c", "b", "a"})
visitExpect(t, x, "d1", []string{"e"}, []string{"d", "c", "b", "a"})
visitExpect(t, x, "e", []string{"e"}, []string{"e", "d", "c", "b", "a"})
visitExpect(t, x, "f", []string{}, []string{"e", "d", "c", "b", "a"})
}
visitX()
var y *Treap
y = x.Upsert("f", 1)
y = y.Delete("a")
y = y.Upsert("cc", 2)
y = y.Delete("c")
visitExpect(t, y, "a", []string{"b", "cc", "d", "e", "f"}, []string{})
visitExpect(t, y, "a1", []string{"b", "cc", "d", "e", "f"}, []string{})
visitExpect(t, y, "b", []string{"b", "cc", "d", "e", "f"}, []string{"b"})
visitExpect(t, y, "b1", []string{"cc", "d", "e", "f"}, []string{"b"})
visitExpect(t, y, "c", []string{"cc", "d", "e", "f"}, []string{"b"})
visitExpect(t, y, "c1", []string{"cc", "d", "e", "f"}, []string{"b"})
visitExpect(t, y, "d", []string{"d", "e", "f"}, []string{"d", "cc", "b"})
visitExpect(t, y, "d1", []string{"e", "f"}, []string{"d", "cc", "b"})
visitExpect(t, y, "e", []string{"e", "f"}, []string{"e", "d", "cc", "b"})
visitExpect(t, y, "f", []string{"f"}, []string{"f", "e", "d", "cc", "b"})
visitExpect(t, y, "z", []string{}, []string{"f", "e", "d", "cc", "b"})
// an uninitialized treap
z := NewTreap(stringCompare)
// a treap to force left traversal of min
lmt := NewTreap(stringCompare)
lmt = lmt.Upsert("b", 2)
lmt = lmt.Upsert("a", 1)
// The x treap should be unchanged.
visitX()
if x.Min() != "a" {
t.Errorf("expected min of a")
}
if x.Max() != "e" {
t.Errorf("expected max of d")
}
if y.Min() != "b" {
t.Errorf("expected min of b")
}
if y.Max() != "f" {
t.Errorf("expected max of f")
}
if z.Min() != nil {
t.Errorf("expected min of nil")
}
if z.Max() != nil {
t.Error("expected max of nil")
}
if lmt.Min() != "a" {
t.Errorf("expected min of a")
}
if lmt.Max() != "b" {
t.Errorf("expeced max of b")
}
}
func visitExpectEndAtC(t *testing.T, x *Treap, start string, arr []string) {
n := 0
x.VisitAscend(start, func(i Item) bool {
if stringCompare(i, "c") > 0 {
return false
}
if i.(string) != arr[n] {
t.Errorf("expected visit item: %v, saw: %v", arr[n], i)
}
n++
return true
})
if n != len(arr) {
t.Errorf("expected # visit callbacks: %v, saw: %v", len(arr), n)
}
}
func TestVisitEndEarly(t *testing.T) {
x := NewTreap(stringCompare)
visitExpectEndAtC(t, x, "a", []string{})
x = load(x, []string{"e", "d", "c", "c", "a", "b", "a", "e"})
visitX := func() {
visitExpectEndAtC(t, x, "a", []string{"a", "b", "c"})
visitExpectEndAtC(t, x, "a1", []string{"b", "c"})
visitExpectEndAtC(t, x, "b", []string{"b", "c"})
visitExpectEndAtC(t, x, "b1", []string{"c"})
visitExpectEndAtC(t, x, "c", []string{"c"})
visitExpectEndAtC(t, x, "c1", []string{})
visitExpectEndAtC(t, x, "d", []string{})
visitExpectEndAtC(t, x, "d1", []string{})
visitExpectEndAtC(t, x, "e", []string{})
visitExpectEndAtC(t, x, "f", []string{})
}
visitX()
}
func TestPriorityAfterUpsert(t *testing.T) {
// See https://github.com/steveyen/gtreap/issues/3 found by icexin.
var check func(n *node, level int, expectedPriority map[string]int)
check = func(n *node, level int, expectedPriority map[string]int) {
if n == nil {
return
}
if n.priority != expectedPriority[n.item.(string)] {
t.Errorf("wrong priority")
}
check(n.left, level+1, expectedPriority)
check(n.right, level+1, expectedPriority)
}
s := NewTreap(stringCompare)
s = s.Upsert("m", 20)
s = s.Upsert("l", 18)
s = s.Upsert("n", 19)
check(s.root, 0, map[string]int{
"m": 20,
"l": 18,
"n": 19,
})
s = s.Upsert("m", 4)
check(s.root, 0, map[string]int{
"m": 20,
"l": 18,
"n": 19,
})
}