-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbinary_heap_test.go
78 lines (64 loc) · 1.32 KB
/
binary_heap_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
package binary_heap
import (
"github.com/spinute/ods-go/utils"
"testing"
)
func TestNew(t *testing.T) {
if ret := New().n; ret != 0 {
t.Errorf("BinaryHeap.New().n = %v", ret)
}
}
func TestAdd(t *testing.T) {
tests := []utils.V{1, 2, 1, -1, -2, -100, 0, 0}
bh := New()
for i, v := range tests {
bh.Add(v)
if bh.n != i+1 {
t.Errorf("bh.n = %v at %v th Add", bh.n, i+1)
}
}
}
func TestAddMany(t *testing.T) {
tests := make([]utils.V, 12345)
bh := New()
for i, v := range tests {
bh.Add(v)
if bh.n != i+1 {
t.Errorf("bh.n = %v at %v th Add", bh.n, i+1)
}
}
}
func TestAddAndRemove(t *testing.T) {
tests := []utils.V{1, 2, 1, -1, -2, -100, 0, 0}
bh := New()
for _, v := range tests {
bh.Add(v)
if ret := bh.Remove(); ret != v {
t.Errorf("Add %v, then %v was removed", v, ret)
}
}
}
func TestAddAndRemove2(t *testing.T) {
n := 123
bh := New()
for i := 0; i < n; i++ {
bh.Add(utils.V(i))
}
for i := 0; i < n; i++ {
if ret, want := bh.Remove(), utils.V(i); ret != want {
t.Errorf("expect %d but returned %d", ret, want)
}
}
}
func TestAddAndRemove3(t *testing.T) {
n := 123
bh := New()
for i := 0; i < n; i++ {
bh.Add(utils.V(n - i - 1))
}
for i := 0; i < n; i++ {
if ret, want := bh.Remove(), utils.V(i); ret != want {
t.Errorf("expect %d but returned %d", ret, want)
}
}
}