aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorMarvin Borner2023-05-27 09:44:14 +0200
committerMarvin Borner2023-05-27 09:44:14 +0200
commit337ec809393b709b36ca7b64d77489ae4bc1af1c (patch)
tree4e6eb71eaa8e81c4b08b8d23938e1609ff5d91a6 /src/lib
parentac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (diff)
More scheduling and probabilisticity
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/pqueue.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/pqueue.c b/src/lib/pqueue.c
index 6f21e5f..c080bb2 100644
--- a/src/lib/pqueue.c
+++ b/src/lib/pqueue.c
@@ -157,3 +157,19 @@ void *pqueue_pop(struct pqueue *q)
return head;
}
+
+void *pqueue_pop_at(struct pqueue *q, size_t p)
+{
+ void *head;
+ if (!q || q->size == 1 || p >= q->size)
+ return NULL;
+
+ head = q->d[p];
+ q->d[p] = q->d[--q->size];
+ if (q->cmppri(q->getpri(head), q->getpri(q->d[p])))
+ bubble_up(q, p);
+ else
+ percolate_down(q, p);
+
+ return head;
+}