forked from chen3feng/stl4go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dlist_test.go
189 lines (167 loc) · 3.52 KB
/
dlist_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
package stl4go
import (
"testing"
)
func Test_Dlist_Interface(t *testing.T) {
_ = Container(&DList[int]{})
}
func Test_DList_New(t *testing.T) {
l := DList[int]{}
expectTrue(t, l.IsEmpty())
expectEq(t, l.Len(), 0)
}
func Test_DListOf(t *testing.T) {
l := DListOf(1, 2, 3)
expectFalse(t, l.IsEmpty())
expectEq(t, l.Len(), 3)
}
func Test_DList_String(t *testing.T) {
l := DList[int]{}
expectEq(t, l.String(), "DList[int]")
}
func Test_DList_Iterate(t *testing.T) {
l := DListOf(1, 2, 3)
i := 1
for it := l.Iterate(); it.IsNotEnd(); it.MoveToNext() {
expectEq(t, it.Value(), i)
expectEq(t, *it.Pointer(), i)
i++
}
expectEq(t, i, 4)
}
func Test_DList_Iterate_Empty(t *testing.T) {
l := DList[int]{}
i := 0
for it := l.Iterate(); it.IsNotEnd(); it.MoveToNext() {
i++
}
expectEq(t, i, 0)
}
func Test_DList_FrontBack(t *testing.T) {
l := DListOf(1, 2, 3)
expectEq(t, l.Front(), 1)
expectEq(t, l.Back(), 3)
}
func Test_DList_PushFront(t *testing.T) {
l := DList[int]{}
l.PushFront(1)
expectFalse(t, l.IsEmpty())
expectEq(t, l.Len(), 1)
}
func Test_DList_PushBack(t *testing.T) {
l := DList[int]{}
l.PushBack(1)
expectFalse(t, l.IsEmpty())
expectEq(t, l.Len(), 1)
}
func Test_DList_PopFront(t *testing.T) {
l := DListOf(1, 2)
expectEq(t, l.PopFront(), 1)
n, ok := l.TryPopFront()
expectEq(t, n, 2)
expectTrue(t, ok)
n, ok = l.TryPopFront()
expectFalse(t, ok)
expectPanic(t, func() { l.PopFront() })
}
func Test_DList_PopBack(t *testing.T) {
l := DListOf(1, 2)
expectEq(t, l.PopBack(), 2)
n, ok := l.TryPopBack()
expectTrue(t, ok)
expectEq(t, n, 1)
n, ok = l.TryPopBack()
expectFalse(t, ok)
expectPanic(t, func() { l.PopBack() })
}
func Test_DList_PushBack_PopFront(t *testing.T) {
l := DList[int]{}
l.PushBack(1)
v := l.PopFront()
expectEq(t, v, 1)
}
func Test_DList_PushBack_PopBack(t *testing.T) {
l := DList[int]{}
l.PushBack(1)
v := l.PopBack()
expectEq(t, v, 1)
}
func Test_DList_PushFront_PopBack(t *testing.T) {
l := DList[int]{}
l.PushFront(1)
v := l.PopBack()
expectEq(t, v, 1)
}
func Test_DList_PushFront_PopFront(t *testing.T) {
l := DList[int]{}
l.PushFront(1)
v := l.PopFront()
expectEq(t, v, 1)
}
func Test_DList_ForEach(t *testing.T) {
a := []int{1, 2, 3}
l := DListOf(a...)
var b []int
l.ForEach(func(n int) {
b = append(b, n)
})
expectEq(t, len(b), 3)
expectTrue(t, Equal(a, b))
}
func Test_DList_ForEachIf(t *testing.T) {
l := DListOf(1, 2, 3)
c := 0
l.ForEachIf(func(n int) bool {
c = n
return n != 2
})
expectEq(t, c, 2)
}
func Test_DList_ForEachMutable(t *testing.T) {
a := []int{1, 2, 3}
l := DListOf(a...)
l.ForEachMutable(func(n *int) {
*n = -*n
})
var b []int
l.ForEach(func(n int) {
b = append(b, n)
})
expectEq(t, len(b), 3)
for i := range b {
expectEq(t, a[i], -b[i])
}
}
func Test_DList_ForEachMutableIf(t *testing.T) {
l := DListOf(1, 2, 3)
c := 0
l.ForEachMutableIf(func(n *int) bool {
c = *n
return *n != 2
})
expectEq(t, c, 2)
}
func Test_DList_ForEach_EmptyOK(t *testing.T) {
l := DList[int]{}
l.ForEach(func(n int) {})
l.ForEachIf(func(n int) bool { return true })
l.ForEachMutable(func(n *int) {})
l.ForEachMutableIf(func(n *int) bool { return true })
}
func Benchmark_DList_Iterate(b *testing.B) {
l := DListOf(Range(1, 10000)...)
b.Run("Iterator", func(b *testing.B) {
sum := 0
for i := 0; i < b.N; i++ {
for it := l.Iterate(); it.IsNotEnd(); it.MoveToNext() {
sum += it.Value()
}
}
})
b.Run("ForEach", func(b *testing.B) {
sum := 0
for i := 0; i < b.N; i++ {
l.ForEach(func(val int) { sum += val })
}
})
}