-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm_deq.c
236 lines (216 loc) · 4.76 KB
/
m_deq.c
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
// http://zonakoda.ru/dek-na-osnove-massiva.html
// Автор: Сергей Валентинович Фролов
// zonakoda@gmail.com
#include <stdio.h> // для printf
#include "m_deq.h"
//создать дек
deq *create_deq(int size)
{
if (size <= 0)
return 0;
deq *d = malloc(sizeof(deq) + size * sizeof(el_type));
if (d)
{
d->size = size;
d->head = d->tail = -1;
d->count = 0;
}
return d;
}
//вставить в конец
deq *push_back(deq *d, el_type elem)
{
if (d->count)
{
if (++(d->tail) == d->size)
d->tail = 0;
}
else
d->tail = d->head = 0;
d->elements[d->tail] = elem;
d->count++;
return d;
}
//удалить из конца
el_type pop_back(deq *d)
{
int index = d->tail;
if (d->count == 1)
d->tail = d->head = -1;
else if (--(d->tail) < 0)
d->tail = d->size - 1;
d->count--;
return d->elements[index];
}
//получить из конца не удаляя
el_type peek_back(deq *d)
{
return d->elements[d->tail];
}
//вставить в начало
deq *push_front(deq *d, el_type elem)
{
if (d->count)
{
if (--(d->head) < 0)
d->head = d->size - 1;
}
else
d->tail = d->head = 0;
d->elements[d->head] = elem;
d->count++;
return d;
}
//удалить из начала
el_type pop_front(deq *d)
{
int index = d->head;
if (d->count == 1)
d->tail = d->head = -1;
else if (++(d->head) == d->size)
d->head = 0;
d->count--;
return d->elements[index];
}
//получить из начала не удаляя
el_type peek_front(deq *d)
{
return d->elements[d->head];
}
//true, если дек пустой
bool is_empty(deq *d)
{
return !d->count;
}
//true, если дек полный
bool is_full(deq *d)
{
return d->count == d->size;
}
//получить итератор
iterator get_iterator(deq *d, bool head)
{
iterator it;
it.d = d;
it.index = head ? d->head : d->tail;
return it;
}
//получить текущий элемент и сделать текущим следующий
el_type next(iterator *it)
{
int index = it->index;
if (index == it->d->tail)
it->index = -1;
else if (++(it->index) == it->d->size)
it->index = 0;
return it->d->elements[index];
}
//получить текущий элемент и сделать текущим предыдущий
el_type prev(iterator *it)
{
int index = it->index;
if (index == it->d->head)
it->index = -1;
else if (--(it->index) < 0)
it->index = it->d->size - 1;
return it->d->elements[index];
}
//изменить размер дека
deq *resize(deq *d, int new_size)
{
if (new_size <= 0)
return 0;
if (new_size == d->size)
return d;
deq *nd = malloc(sizeof(deq) + new_size * sizeof(el_type));
if (!nd)
return 0;
nd->size = new_size;
nd->count = new_size > d->count ? d->count : new_size;
nd->head = 0;
nd->tail = nd->count - 1;
int r = d->size - d->head;
if (nd->count <= r)
memcpy(nd->elements, d->elements + d->head, nd->count * sizeof(el_type));
else
{
memcpy(nd->elements, d->elements + d->head, r * sizeof(el_type));
memcpy(nd->elements + d->size - d->head, d->elements, (nd->count - r) * sizeof(el_type));
}
free(d);
return nd;
}
// -- // вывести все элементы дека от головы к хвосту
void print_deq_ht(deq *d)
{
if (!is_empty(d))
{
iterator it = get_iterator(d, true);
while (it.index != -1)
{
printf("%d ", next(&it));
}
printf("\n");
}
}
// -- // вывести все элементы дека от хвоста к голове
void print_deq_th(deq *d)
{
if (!is_empty(d))
{
iterator it = get_iterator(d, false);
while (it.index != -1)
{
printf("%d ", prev(&it));
}
printf("\n");
}
}
// -- // извлечение всех элементов из дека и оказ от использования free()
void dell_deq(deq *d)
{ // "артистично" извлекаем элементы
while (!is_empty(d))
{
if (rand() % 2)
pop_back(d);
else
pop_front(d);
}
free(d);
d = NULL;
}
// -- // вернуть число элементов
int in_count_deq(deq *d)
{ int i;
if (!is_empty(d))
{
iterator it = get_iterator(d, true);
for (i = 0; it.index != -1; ++i)
{
next(&it);
}
}
return i;
}
/*
if (!is_empty(deq_x) && !is_empty(deq_y))
{
iterator it_x = get_iterator(deq_x, false);
iterator it_y = get_iterator(deq_y, false);
while (it_x.index != -1 && it_y.index != -1)
{
printf("[x: %3d y: %3d]", prev(&it_x), prev(&it_y));
}
printf("\n");
}
if (!is_empty(deq_x) && !is_empty(deq_y))
{
iterator it_x = get_iterator(deq_x, true);
iterator it_y = get_iterator(deq_y, true);
while (it_x.index != -1 && it_y.index != -1)
{
printf("[x: %3d y: %3d] \n", next(&it_x), next(&it_y));
}
printf("\n");
}
*/