diff options
author | Marvin Borner | 2023-05-27 09:44:14 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-27 09:44:14 +0200 |
commit | 337ec809393b709b36ca7b64d77489ae4bc1af1c (patch) | |
tree | 4e6eb71eaa8e81c4b08b8d23938e1609ff5d91a6 /src/lib | |
parent | ac039e6fcbdec3dc6c8e28013e1b3a20068c84ee (diff) |
More scheduling and probabilisticity
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/pqueue.c | 16 |
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; +} |