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
|
#include <cgreen/cgreen.h>
/*
Implement the stack methods using two queues
* `push(x)`
* `pop()`
Analyze the running time of the `push(x)` and `pop()` operations based on this implementation.
*/
struct node {
int data;
struct node *next;
};
typedef struct node Node;
typedef struct {
Node *head;
int size;
} Queue;
typedef struct {
Queue *q1;
} Stack;
static Queue *newQueue(){
Queue *queue = malloc(sizeof(Queue));
queue->size = 0;
queue->head = NULL;
return queue;
}
static Stack *initialize() {
Stack *stack = malloc(sizeof(Stack));
stack->q1 = newQueue();
return stack;
}
Node *newNode(int data) {
Node *node = malloc(sizeof(Node));
node->data = data;
node->next = NULL;
return node;
}
void enqueue(Queue *q, int data) {
Node *node = newNode(data);
q->size++;
if (q->head == NULL) {
q->head = node;
} else {
Node *tail = q->head;
while (tail->next != NULL)
tail = tail->next;
tail->next = node;
}
}
int dequeue(Queue *q) {
if (q->head == NULL) return -1;
Node *node = q->head;
int data = node->data;
q->head = node->next;
free(node);
return data;
}
// The running time is linear time.
static void push(Stack *stack, int data) {
enqueue(stack->q1, data);
}
// The running time is linear time.
static int pop(Stack *stack) {
int count = stack->q1->size - 1;
Queue *tmp = newQueue();
for (int i = 0; i < count; i++)
enqueue(tmp, dequeue(stack->q1));
int data = dequeue(stack->q1);
free(stack->q1);
stack->q1 = tmp;
return data;
}
int size(Stack *stack) {
return stack->q1->size;
}
static void destroy(Stack *stack) {
int count = size(stack);
for (int i = 0; i < count; i++)
pop(stack);
free(stack->q1);
free(stack);
}
static void inspect(Queue *q) {
Node *tmp = q->head;
if (q->size == 0) {
printf("[]\n");
return;
}
printf("[");
for (int i = 0; i < q->size; i++) {
printf("%d,", tmp->data);
tmp = tmp->next;
}
printf("\b]\n");
}
Describe(Stack);
BeforeEach(Stack){ }
AfterEach(Stack){ }
Ensure(Stack, push_onto_stack) {
Stack *stack = initialize();
push(stack, 1);
assert_that(size(stack), is_equal_to(1));
push(stack, 2);
assert_that(size(stack), is_equal_to(2));
destroy(stack);
}
Ensure(Stack, pop_single_item) {
Stack *stack = initialize();
push(stack, 1);
assert_that(pop(stack), is_equal_to(1));
destroy(stack);
}
Ensure(Stack, pop_successive_items) {
Stack *stack = initialize();
push(stack, 1);
push(stack, 2);
assert_that(pop(stack), is_equal_to(2));
assert_that(pop(stack), is_equal_to(1));
destroy(stack);
}
TestSuite *stack_tests() {
TestSuite *suite = create_test_suite();
add_test_with_context(suite, Stack, push_onto_stack);
add_test_with_context(suite, Stack, pop_single_item);
add_test_with_context(suite, Stack, pop_successive_items);
return suite;
}
|