-
Notifications
You must be signed in to change notification settings - Fork 5
/
priorityQueue.c
298 lines (234 loc) · 5.95 KB
/
priorityQueue.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
* Copyright 2010 Volkan Yazıcı <[email protected]>
* Copyright 2006-2010 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
#include "priorityQueue.h"
#define left(i) ((i) << 1)
#define right(i) (((i) << 1) + 1)
#define parent(i) ((i) >> 1)
ps_pqueue_t *
ps_pqueue_init(size_t n,
ps_pqueue_cmp_pri_f cmppri,
ps_pqueue_get_pri_f getpri,
ps_pqueue_set_pri_f setpri,
ps_pqueue_get_pos_f getpos,
ps_pqueue_set_pos_f setpos)
{
ps_pqueue_t *q;
if (!(q = malloc(sizeof(ps_pqueue_t))))
return NULL;
/* Need to allocate n+1 elements since element 0 isn't used. */
if (!(q->d = malloc((n + 1) * sizeof(void *)))) {
free(q);
return NULL;
}
q->size = 1;
q->avail = q->step = (n+1); /* see comment above about n+1 */
q->cmppri = cmppri;
q->setpri = setpri;
q->getpri = getpri;
q->getpos = getpos;
q->setpos = setpos;
return q;
}
void
ps_pqueue_free(ps_pqueue_t *q)
{
free(q->d);
free(q);
}
size_t
ps_pqueue_size(ps_pqueue_t *q)
{
/* queue element 0 exists but doesn't count since it isn't used. */
return (q->size - 1);
}
static void
bubble_up(ps_pqueue_t *q, size_t i)
{
size_t parent_node;
void *moving_node = q->d[i];
ps_pqueue_pri_t moving_pri = q->getpri(moving_node);
for (parent_node = parent(i);
((i > 1) && q->cmppri(q->getpri(q->d[parent_node]), moving_pri));
i = parent_node, parent_node = parent(i))
{
q->d[i] = q->d[parent_node];
q->setpos(q->d[i], i);
}
q->d[i] = moving_node;
q->setpos(moving_node, i);
}
static size_t
maxchild(ps_pqueue_t *q, size_t i)
{
size_t child_node = left(i);
if (child_node >= q->size)
return 0;
if ((child_node+1) < q->size &&
q->cmppri(q->getpri(q->d[child_node]), q->getpri(q->d[child_node+1])))
child_node++; /* use right child instead of left */
return child_node;
}
static void
percolate_down(ps_pqueue_t *q, size_t i)
{
size_t child_node;
void *moving_node = q->d[i];
ps_pqueue_pri_t moving_pri = q->getpri(moving_node);
while ((child_node = maxchild(q, i)) &&
q->cmppri(moving_pri, q->getpri(q->d[child_node])))
{
q->d[i] = q->d[child_node];
q->setpos(q->d[i], i);
i = child_node;
}
q->d[i] = moving_node;
q->setpos(moving_node, i);
}
int
ps_pqueue_insert(ps_pqueue_t *q, void *d)
{
void *tmp;
size_t i;
size_t newsize;
if (!q) return 1;
/* allocate more memory if necessary */
if (q->size >= q->avail) {
newsize = q->size + q->step;
if (!(tmp = realloc(q->d, sizeof(void *) * newsize)))
return 1;
q->d = tmp;
q->avail = newsize;
}
/* insert item */
i = q->size++;
q->d[i] = d;
bubble_up(q, i);
return 0;
}
void
ps_pqueue_change_priority(ps_pqueue_t *q,
ps_pqueue_pri_t new_pri,
void *d)
{
size_t posn;
ps_pqueue_pri_t old_pri = q->getpri(d);
q->setpri(d, new_pri);
posn = q->getpos(d);
if (q->cmppri(old_pri, new_pri))
bubble_up(q, posn);
else
percolate_down(q, posn);
}
int
ps_pqueue_remove(ps_pqueue_t *q, void *d)
{
size_t posn = q->getpos(d);
q->d[posn] = q->d[--q->size];
if (q->cmppri(q->getpri(d), q->getpri(q->d[posn])))
bubble_up(q, posn);
else
percolate_down(q, posn);
return 0;
}
void *
ps_pqueue_pop(ps_pqueue_t *q)
{
void *head;
if (!q || q->size == 1)
return NULL;
head = q->d[1];
q->d[1] = q->d[--q->size];
percolate_down(q, 1);
return head;
}
void *
ps_pqueue_peek(ps_pqueue_t *q)
{
void *d;
if (!q || q->size == 1)
return NULL;
d = q->d[1];
return d;
}
void
ps_pqueue_dump(ps_pqueue_t *q,
FILE *out,
ps_pqueue_print_entry_f print)
{
int i;
fprintf(stdout,"posn\tleft\tright\tparent\tmaxchild\t...\n");
for (i = 1; i < q->size ;i++) {
fprintf(stdout,
"%d\t%d\t%d\t%d\t%ul\t",
i,
left(i), right(i), parent(i),
(unsigned int)maxchild(q, i));
print(out, q->d[i]);
}
}
static void
set_pos(void *d, size_t val)
{
/* do nothing */
}
static void
set_pri(void *d, ps_pqueue_pri_t pri)
{
/* do nothing */
}
void
ps_pqueue_print(ps_pqueue_t *q,
FILE *out,
ps_pqueue_print_entry_f print)
{
ps_pqueue_t *dup;
void *e;
dup = ps_pqueue_init(q->size,
q->cmppri, q->getpri, set_pri,
q->getpos, set_pos);
dup->size = q->size;
dup->avail = q->avail;
dup->step = q->step;
memcpy(dup->d, q->d, (q->size * sizeof(void *)));
while ((e = ps_pqueue_pop(dup)))
print(out, e);
ps_pqueue_free(dup);
}
static int
subtree_is_valid(ps_pqueue_t *q, int pos)
{
if (left(pos) < q->size) {
/* has a left child */
if (q->cmppri(q->getpri(q->d[pos]), q->getpri(q->d[left(pos)])))
return 0;
if (!subtree_is_valid(q, left(pos)))
return 0;
}
if (right(pos) < q->size) {
/* has a right child */
if (q->cmppri(q->getpri(q->d[pos]), q->getpri(q->d[right(pos)])))
return 0;
if (!subtree_is_valid(q, right(pos)))
return 0;
}
return 1;
}
int
ps_pqueue_is_valid(ps_pqueue_t *q)
{
return subtree_is_valid(q, 1);
}