
9 May
2023
9 May
'23
3:55 a.m.
On Tue, 9 May 2023, David Feuer wrote:
I'm currently putting the finishing touches on the first version of a new priority queue package. It implements amortized-optimal priority queues and is intended to compete with the heaps package with a simpler, more compact, and hopefully faster implementation†. The main types are key-only and key-value priority queues, which I'm naming based on the conventions of the pqueue package: data MinQueue k data MinPQueue k a data MaxQueue k data MaxPQueue k a
These are priority queues, not priority search queues, right?