-
Notifications
You must be signed in to change notification settings - Fork 1
/
pq.c
182 lines (141 loc) · 3.21 KB
/
pq.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
/* pq.c - priority queue */
/* Copyright (C) 2007 Keith Rarick and Philotic Inc.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "tube.h" /* hack to make cpp happy */
#include "pq.h"
void
pq_init(pq q, job_cmp_fn cmp)
{
if (!q) return;
q->cap = 0;
q->used = 0;
q->cmp = cmp;
q->heap = NULL;
return;
}
void
pq_clear(pq q)
{
free(q->heap);
pq_init(q, q->cmp);
}
static void
pq_grow(pq q)
{
job *nheap;
unsigned int ncap = q->cap << 1 ? : 1;
nheap = malloc(ncap * sizeof(job));
if (!nheap) return;
if (q->heap) memcpy(nheap, q->heap, q->used * sizeof(job));
free(q->heap);
q->heap = nheap;
q->cap = ncap;
}
static void
swap(pq q, unsigned int a, unsigned int b)
{
job j;
j = q->heap[a];
q->heap[a] = q->heap[b];
q->heap[b] = j;
q->heap[a]->heap_index = a;
q->heap[b]->heap_index = b;
}
#define PARENT(i) (((i-1))>>1)
#define CHILD_LEFT(i) (((i)<<1)+1)
#define CHILD_RIGHT(i) (((i)<<1)+2)
static int
cmp(pq q, unsigned int a, unsigned int b)
{
return q->cmp(q->heap[a], q->heap[b]);
}
static void
bubble_up(pq q, unsigned int k)
{
int p;
if (k == 0) return;
p = PARENT(k);
if (cmp(q, p, k) <= 0) return;
swap(q, k, p);
bubble_up(q, p);
}
static void
bubble_down(pq q, unsigned int k)
{
int l, r, s;
l = CHILD_LEFT(k);
r = CHILD_RIGHT(k);
s = k;
if (l < q->used && cmp(q, l, k) < 0) s = l;
if (r < q->used && cmp(q, r, s) < 0) s = r;
if (s == k) return; /* already satisfies the heap property */
swap(q, k, s);
bubble_down(q, s);
}
/* assumes there is at least one item in the queue */
static void
delete_min(pq q)
{
q->heap[0] = q->heap[--q->used];
q->heap[0]->heap_index = 0;
if (q->used) bubble_down(q, 0);
}
int
pq_give(pq q, job j)
{
int k;
if (q->used >= q->cap) pq_grow(q);
if (q->used >= q->cap) return 0;
k = q->used++;
q->heap[k] = j;
j->heap_index = k;
bubble_up(q, k);
return 1;
}
job
pq_take(pq q)
{
job j;
if (q->used == 0) return NULL;
j = q->heap[0];
delete_min(q);
return j;
}
job
pq_peek(pq q)
{
if (q->used == 0) return NULL;
return q->heap[0];
}
job
pq_remove(pq q, job j)
{
uint64_t id;
unsigned int pri;
if (j->heap_index >= q->used) return NULL;
if (q->heap[j->heap_index] != j) return NULL;
id = j->id;
j->id = 0;
pri = j->pri;
j->pri = 0;
bubble_up(q, j->heap_index);
j->id = id;
j->pri = pri;
/* can't happen */
if (q->heap[0] != j) return NULL;
delete_min(q);
return j;
}