-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquicksort_test.go
145 lines (120 loc) · 3.53 KB
/
quicksort_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
package quicksort
import (
"math/rand"
"sort"
"testing"
)
func equal(a, b []int) bool {
if len(a) != len(b) {
return false
}
for i := range a {
if a[i] != b[i] {
return false
}
}
return true
}
func TestQuicksortEmptySlice(t *testing.T) {
expected := []int{}
actual := Sort([]int{})
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting an empty slice.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func TestQuicksortSingleElementSlice(t *testing.T) {
expected := []int{0}
actual := Sort([]int{0})
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting a slice with a single element.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func TestQuicksortTwoElementSlice(t *testing.T) {
expected := []int{0, 1}
actual := Sort([]int{0, 1})
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting a slice with two elements that are already sorted.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func TestQuicksortTwoElementUnsortedSlice(t *testing.T) {
expected := []int{2, 7}
data := []int{7, 2}
actual := Sort(data)
if equal(data, actual) {
t.Errorf("Array was sorted in place instead of creating a new slice.")
}
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting a slice with two elements that aren't sorted.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func TestQuicksortSmallSample(t *testing.T) {
expected := []int{0, 1, 3, 7}
data := []int{7, 0, 1, 3}
actual := Sort(data)
if equal(data, actual) {
t.Errorf("Array was sorted in place instead of creating a new slice.")
}
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting a slice with elements that aren't sorted.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func TestQuicksort(t *testing.T) {
expected := []int{0, 1, 2, 3, 4, 5, 6, 7}
data := []int{7, 6, 5, 4, 3, 2, 1, 0}
actual := Sort(data)
if equal(data, actual) {
t.Errorf("Array was sorted in place instead of creating a new slice.")
}
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting a slice with elements that aren't sorted.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func TestQuicksortSortedSlice(t *testing.T) {
expected := []int{0, 1, 2, 3, 4, 5, 6, 7}
actual := Sort([]int{0, 1, 2, 3, 4, 5, 6, 7})
if !equal(expected, actual) {
t.Errorf("Unexpected result when sorting a slice with elements that are already sorted.\nExpected: %v\nGot.....: %v\n", expected, actual)
}
}
func testRandomSample(t *testing.T, size int) {
random := rand.New(rand.NewSource(777))
data := make([]int, size)
for i := range data {
data[i] = random.Int()
}
expected := append([]int{}, data...)
sort.Ints(expected)
actual := Sort(data)
if !equal(actual, expected) {
t.Errorf("Unexpected result when sorting slice with %v random values.", size)
}
}
func TestQuicksortTinyRandomSample(t *testing.T) {
testRandomSample(t, 10)
}
func TestQuicksortSmallRandomSample(t *testing.T) {
testRandomSample(t, 100)
}
func TestQuicksortRandomSample(t *testing.T) {
testRandomSample(t, 1000)
}
func TestQuicksortMediumRandomSample(t *testing.T) {
testRandomSample(t, 10000)
}
func TestQuicksortLargeRandomSample(t *testing.T) {
testRandomSample(t, 100000)
}
func TestQuicksortMassiveRandomSample(t *testing.T) {
testRandomSample(t, 1000000)
}
func BenchmarkSort(b *testing.B) {
random := rand.New(rand.NewSource(777))
actual := make([]int, 10000)
for i := range actual {
actual[i] = random.Int()
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Sort(actual)
}
}