-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathcircular_queue_using_array_test.go
88 lines (74 loc) · 3.9 KB
/
circular_queue_using_array_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
package queue
import "testing"
/*
TestCircularQueue tests solution(s) with the following signature and problem description:
func (queue *CircularQueue) enqueue(n int) error
func (queue *CircularQueue) dequeue() (int, error)
Given a size, implement a circular queue using a slice.
A circular queue also called a ring buffer is different from a normal queue in that
the last element is connected to the first element.
For example given a circular array of size 4 if we enqueue integers {1,2,3,4,5,6} and then dequeue 2 times
we should get 3 and 4.
, - ~ - , , - ~ - , , - ~ - , , - ~ - ,
, ' ... ' , , ' ... ' , , ' ... ' , , ' ... ' ,
, ... , , ... , , ... , , ... ,
, 1 ... , , 1 ... 2 , , 1 ... 2 , , 1 ... 2 ,
, ... , , ... , , ... , , ... ,
, ................... , , ................... , , ................... , , ................... ,
, ................... , , ................... , , ................... , , ................... ,
, ... , , ... , , ... , , ... ,
, ... , , ... , , ... 3 , , 4 ... 3 ,
, ... , ' , ... , ' , ... , ' , ... , '
' - ,..., ' ' - ,..., ' ' - ,..., ' ' - ,..., '
, - ~ - , , - ~ - , , - ~ - , , - ~ - ,
, ' ... ' , , ' ... ' , , ' ... ' , , ' ... ' ,
, ... , , ... , , ... , , ... ,
, 5 ... 2 , , 5 ... 6 , , 5 ... 6 , , 5 ... 6 ,
, ... , , ... , , ... , , ... ,
, ................... , , ................... , , ................... , , ................... ,
, ................... , , ................... , , ................... , , ................... ,
, ... , , ... , , ... , , ... ,
, 4 ... 3 , , 4 ... 3 , , 4 ... , , ... ,
, ... , ' , ... , ' , ... , ' , ... , '
' - ,..., ' ' - ,..., ' ' - ,..., ' ' - ,..., '
As shown in the above example the circular queue does not run out of capacity and still allows FIFO operations.
*/
func TestCircularQueue(t *testing.T) {
type testRound struct {
enqueueStart int
enqueueEnd int
dequeueStart int
dequeueEnd int
expectedErr error
}
tests := []struct {
size int
testRounds []testRound
}{
{1, []testRound{{1, 6, 6, 6, nil}}},
{2, []testRound{{1, 6, 5, 5, nil}}},
{4, []testRound{{1, 6, 3, 6, nil}}},
{4, []testRound{{1, 6, 3, 6, nil}, {1, 6, 3, 6, nil}}},
{4, []testRound{{1, 6, 3, 7, ErrQueueEmpty}}},
}
for i, test := range tests {
queue := NewCircularQueue(test.size)
for j, testRound := range test.testRounds {
for i := testRound.enqueueStart; i <= testRound.enqueueEnd; i++ {
queue.enqueue(i)
}
for want := testRound.dequeueStart; want <= testRound.dequeueEnd; want++ {
got, err := queue.dequeue()
if err != nil {
if err != testRound.expectedErr {
t.Fatalf("Failed test case #%d round #%d. Unexpected error %s", i, j, err)
}
break
}
if got != want {
t.Fatalf("Failed test case #%d round #%d. Want %d, got %d", i, j, want, got)
}
}
}
}
}