-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalgorithms_test.go
More file actions
393 lines (346 loc) · 9.02 KB
/
algorithms_test.go
File metadata and controls
393 lines (346 loc) · 9.02 KB
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
package pqueue
import (
"fmt"
"math/rand"
"reflect"
"testing"
"time"
)
// TestAllSortingStrategies tests all sorting strategies explicitly
func TestAllSortingStrategies(t *testing.T) {
data := []int{64, 34, 25, 12, 22, 11, 90}
expected := []int{11, 12, 22, 25, 34, 64, 90}
strategies := []struct {
name string
strategy SortStrategy
}{
{"Auto", AutoStrategy},
{"Insertion", InsertionStrategy},
{"Quick", QuickStrategy},
{"Merge", MergeStrategy},
{"Introsort", IntrosortStrategy},
{"Timsort", TimsortStrategy},
}
for _, s := range strategies {
t.Run(s.name, func(t *testing.T) {
pq := NewInts(data)
pq.SortWithStrategy(s.strategy)
result := pq.ToSlice()
if !reflect.DeepEqual(result, expected) {
t.Errorf("Strategy %s: got %v, want %v", s.name, result, expected)
}
})
}
}
// TestRadixSortForIntegers tests radix sort specifically for integers
func TestRadixSortForIntegers(t *testing.T) {
tests := []struct {
name string
data []int
want []int
}{
{
name: "positive integers",
data: []int{170, 45, 75, 90, 2, 802, 24, 66},
want: []int{2, 24, 45, 66, 75, 90, 170, 802},
},
{
name: "single digit",
data: []int{5, 2, 8, 1, 9, 3},
want: []int{1, 2, 3, 5, 8, 9},
},
{
name: "same number of digits",
data: []int{123, 456, 789, 234, 567},
want: []int{123, 234, 456, 567, 789},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
pq := NewInts(tt.data)
pq.SortWithStrategy(RadixStrategy)
got := pq.ToSlice()
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("RadixSort() = %v, want %v", got, tt.want)
}
})
}
}
// TestCountingSortForIntegers tests counting sort for small range integers
func TestCountingSortForIntegers(t *testing.T) {
tests := []struct {
name string
data []int
want []int
}{
{
name: "small range",
data: []int{4, 2, 2, 8, 3, 3, 1},
want: []int{1, 2, 2, 3, 3, 4, 8},
},
{
name: "all same",
data: []int{5, 5, 5, 5},
want: []int{5, 5, 5, 5},
},
{
name: "zero included",
data: []int{3, 0, 2, 0, 1},
want: []int{0, 0, 1, 2, 3},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
pq := NewInts(tt.data)
pq.SortWithStrategy(CountingStrategy)
got := pq.ToSlice()
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("CountingSort() = %v, want %v", got, tt.want)
}
})
}
}
// TestAutoStrategySelection tests automatic strategy selection
func TestAutoStrategySelection(t *testing.T) {
tests := []struct {
name string
data []int
expectedType string // We can't directly test the strategy, but we can test behavior
}{
{
name: "small array should use insertion sort",
data: []int{5, 2, 8, 1},
expectedType: "small",
},
{
name: "large array should use advanced strategy",
data: make([]int, 1001), // Will be filled with random data
expectedType: "large",
},
{
name: "nearly sorted should be detected",
data: []int{1, 2, 3, 5, 4, 6, 7, 8, 9, 10}, // Only one inversion
expectedType: "nearly_sorted",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.expectedType == "large" {
// Fill with random data for large test
for i := range tt.data {
tt.data[i] = rand.Intn(1000)
}
}
pq := NewInts(tt.data)
pq.Sort() // Use auto strategy
// Verify it's sorted regardless of strategy
result := pq.ToSlice()
for i := 1; i < len(result); i++ {
if result[i-1] > result[i] {
t.Errorf("Array not sorted: %d > %d at positions %d, %d", result[i-1], result[i], i-1, i)
}
}
})
}
}
// TestStrategyForDifferentDataTypes tests strategy selection for different data types
func TestStrategyForDifferentDataTypes(t *testing.T) {
t.Run("string_data", func(t *testing.T) {
data := []string{"zebra", "apple", "banana", "cherry", "date"}
pq := NewStrings(data)
pq.Sort()
result := pq.ToSlice()
expected := []string{"apple", "banana", "cherry", "date", "zebra"}
if !reflect.DeepEqual(result, expected) {
t.Errorf("String sort failed: got %v, want %v", result, expected)
}
})
t.Run("float_data", func(t *testing.T) {
data := []float64{3.14, 2.71, 1.41, 1.73, 0.57}
pq := NewFloats(data)
pq.Sort()
result := pq.ToSlice()
expected := []float64{0.57, 1.41, 1.73, 2.71, 3.14}
if !reflect.DeepEqual(result, expected) {
t.Errorf("Float sort failed: got %v, want %v", result, expected)
}
})
t.Run("byte_slice_data", func(t *testing.T) {
data := [][]byte{
[]byte("zebra"),
[]byte("apple"),
[]byte("banana"),
}
pq := NewBytes(data)
pq.Sort()
result := pq.ToSlice()
// Check if sorted lexicographically
for i := 1; i < len(result); i++ {
if string(result[i-1]) > string(result[i]) {
t.Errorf("Byte slices not sorted: %s > %s", result[i-1], result[i])
}
}
})
}
// TestLargeDataSets tests performance with large data sets
func TestLargeDataSets(t *testing.T) {
sizes := []int{1000, 5000, 10000}
for _, size := range sizes {
t.Run(fmt.Sprintf("size_%d", size), func(t *testing.T) {
// Generate random data
rand.Seed(time.Now().UnixNano())
data := make([]int, size)
for i := range data {
data[i] = rand.Intn(size * 10)
}
start := time.Now()
pq := NewInts(data)
pq.Sort()
duration := time.Since(start)
// Verify it's sorted
result := pq.ToSlice()
for i := 1; i < len(result); i++ {
if result[i-1] > result[i] {
t.Errorf("Large dataset not sorted at position %d", i)
}
}
t.Logf("Sorted %d elements in %v", size, duration)
})
}
}
// TestEdgeCases tests various edge cases
func TestEdgeCases(t *testing.T) {
t.Run("single_element", func(t *testing.T) {
pq := NewInts([]int{42})
pq.Sort()
result := pq.ToSlice()
if len(result) != 1 || result[0] != 42 {
t.Errorf("Single element test failed")
}
})
t.Run("all_duplicates", func(t *testing.T) {
data := make([]int, 100)
for i := range data {
data[i] = 7
}
pq := NewInts(data)
pq.Sort()
result := pq.ToSlice()
for _, v := range result {
if v != 7 {
t.Errorf("All duplicates test failed")
}
}
})
t.Run("reverse_sorted", func(t *testing.T) {
data := []int{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}
pq := NewInts(data)
pq.Sort()
result := pq.ToSlice()
expected := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
if !reflect.DeepEqual(result, expected) {
t.Errorf("Reverse sorted test failed")
}
})
t.Run("already_sorted", func(t *testing.T) {
data := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
pq := NewInts(data)
pq.Sort()
result := pq.ToSlice()
if !reflect.DeepEqual(result, data) {
t.Errorf("Already sorted test failed")
}
})
}
// TestStability tests if stable sorting algorithms maintain relative order
func TestStability(t *testing.T) {
type Item struct {
Value int
Index int
}
data := []Item{
{Value: 3, Index: 0},
{Value: 1, Index: 1},
{Value: 3, Index: 2},
{Value: 2, Index: 3},
{Value: 1, Index: 4},
}
pq := New(data, func(a, b Item) bool {
return a.Value < b.Value
})
// Test with merge sort (stable)
pq.SortWithStrategy(MergeStrategy)
result := pq.ToSlice()
// Check that items with same value maintain original order
prevValue := -1
prevIndex := -1
for _, item := range result {
if item.Value == prevValue && item.Index < prevIndex {
t.Errorf("Stability violated: item with index %d came before item with index %d", item.Index, prevIndex)
}
if item.Value != prevValue {
prevIndex = item.Index
} else if item.Index > prevIndex {
prevIndex = item.Index
}
prevValue = item.Value
}
}
// TestConcurrentAccess tests thread safety considerations
func TestConcurrentAccess(t *testing.T) {
// Note: PQueue is not thread-safe by design, but we test that
// concurrent read operations don't cause data races
data := make([]int, 1000)
for i := range data {
data[i] = rand.Intn(1000)
}
pq := NewInts(data)
pq.Sort()
// Multiple goroutines reading the sorted data
done := make(chan bool, 10)
for i := 0; i < 10; i++ {
go func() {
result := pq.ToSlice()
// Verify it's sorted
for j := 1; j < len(result); j++ {
if result[j-1] > result[j] {
t.Errorf("Concurrent read found unsorted data")
}
}
done <- true
}()
}
// Wait for all goroutines to complete
for i := 0; i < 10; i++ {
<-done
}
}
// TestMemoryUsage tests memory efficiency
func TestMemoryUsage(t *testing.T) {
// Test that sorting doesn't use excessive memory
originalData := make([]int, 10000)
for i := range originalData {
originalData[i] = rand.Intn(10000)
}
// Test different strategies to ensure they don't leak memory
strategies := []SortStrategy{
QuickStrategy,
MergeStrategy,
IntrosortStrategy,
TimsortStrategy,
}
for _, strategy := range strategies {
// Create a copy for each test
testData := make([]int, len(originalData))
copy(testData, originalData)
testPQ := NewInts(testData)
testPQ.SortWithStrategy(strategy)
// Verify the result is still correct
result := testPQ.ToSlice()
for i := 1; i < len(result); i++ {
if result[i-1] > result[i] {
t.Errorf("Memory test failed: unsorted result for strategy %v", strategy)
}
}
}
}