-
Notifications
You must be signed in to change notification settings - Fork 0
/
bubblesort_test.go
91 lines (77 loc) · 1.88 KB
/
bubblesort_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
package efficientgo
import (
"sort"
"testing"
)
var sorted []uint32 // Prevents compiler from optimizing out the function calls which assign to it.
func TestSortingMethods(t *testing.T) {
objs := genObjs(100)
// Bubble sort.
sorted := bubbleSort(objs)
if hasZero(sorted) {
t.Error("bubbleSort is missing some numbers:", sorted)
}
if !sort.SliceIsSorted(sorted, func(i, j int) bool {
return sorted[i] > sorted[j]
}) {
t.Error("bubbleSort did not return sorted data:", sorted)
}
// Builtin sort.
sorted = builtinSort(objs)
if hasZero(sorted) {
t.Error("builtinSort is missing some numbers:", sorted)
}
if !sort.SliceIsSorted(sorted, func(i, j int) bool {
return sorted[i] > sorted[j]
}) {
t.Error("builtinSort did not return sorted data:", sorted)
}
}
func BenchmarkSorts100(b *testing.B) {
// Using the same input for both benchmarks.
b.StopTimer()
objs := genObjs(100)
b.StartTimer()
b.Run("BenchmarkBubbleSort", func(b *testing.B) {
for n := 0; n < b.N; n++ {
sorted = bubbleSort(objs)
}
})
b.Run("BenchmarkBuiltinSort", func(b *testing.B) {
for n := 0; n < b.N; n++ {
sorted = builtinSort(objs)
}
})
}
func BenchmarkSorts1000(b *testing.B) {
// Using the same input for both benchmarks.
b.StopTimer()
objs := genObjs(1000)
b.StartTimer()
b.Run("BenchmarkBubbleSort", func(b *testing.B) {
for n := 0; n < b.N; n++ {
sorted = bubbleSort(objs)
}
})
b.Run("BenchmarkBuiltinSort", func(b *testing.B) {
for n := 0; n < b.N; n++ {
sorted = builtinSort(objs)
}
})
}
func BenchmarkSorts10000(b *testing.B) {
// Using the same input for both benchmarks.
b.StopTimer()
objs := genObjs(10000)
b.StartTimer()
b.Run("BenchmarkBubbleSort", func(b *testing.B) {
for n := 0; n < b.N; n++ {
sorted = bubbleSort(objs)
}
})
b.Run("BenchmarkBuiltinSort", func(b *testing.B) {
for n := 0; n < b.N; n++ {
sorted = builtinSort(objs)
}
})
}