psqueues: Pure priority search queues
The psqueues package provides Priority Search Queues in three different flavors.
OrdPSQ k p v
, which uses theOrd k
instance to provide fast insertion, deletion and lookup. This implementation is based on Ralf Hinze's A Simple Implementation Technique for Priority Search Queues. Hence, it is similar to the PSQueue library, although it is considerably faster and provides a slightly different API.IntPSQ p v
is a far more efficient implementation. It fixes the key type toInt
and uses a radix tree (likeIntMap
) with an additional min-heap property.HashPSQ k p v
is a fairly straightforward extension ofIntPSQ
: it simply uses the keys' hashes as indices in theIntPSQ
. If there are any hash collisions, it uses anOrdPSQ
to resolve those. The performance of this implementation is comparable to that ofIntPSQ
, but it is more widely applicable since the keys are not restricted toInt
, but rather to anyHashable
datatype.
Each of the three implementations provides the same API, so they can be used interchangeably. The benchmarks show how they perform relative to one another, and also compared to the other Priority Search Queue implementations on Hackage: PSQueue and fingertree-psqueue.
Typical applications of Priority Search Queues include:
Caches, and more specifically LRU Caches;
Schedulers;
Pathfinding algorithms, such as Dijkstra's and A*.
Downloads
- psqueues-0.2.8.0.tar.gz [browse] (Cabal source package)
- Package description (revised from the package)
Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.1.1.0, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.2.0.3, 0.2.1.0, 0.2.2.0, 0.2.2.1, 0.2.2.2, 0.2.2.3, 0.2.3.0, 0.2.4.0, 0.2.5.0, 0.2.6.0, 0.2.7.0, 0.2.7.1, 0.2.7.2, 0.2.7.3, 0.2.8.0 |
---|---|
Change log | CHANGELOG |
Dependencies | base (>=4.2 && <5), deepseq (>=1.2 && <1.6), ghc-prim, hashable (>=1.1.2.3 && <1.6) [details] |
Tested with | ghc ==9.6.1, ghc ==9.4.2, ghc ==9.2.2, ghc ==9.0.2, ghc ==8.10.7, ghc ==8.8.4, ghc ==8.6.5, ghc ==8.4.4, ghc ==8.2.2, ghc ==8.0.2 |
License | BSD-3-Clause |
Author | |
Maintainer | Jasper Van der Jeugt <jaspervdj@gmail.com> |
Revised | Revision 1 made by JasperVanDerJeugt at 2024-08-24T12:31:28Z |
Category | Data Structures |
Bug tracker | https://github.com/jaspervdj/psqueues/issues |
Source repo | head: git clone http://github.com/jaspervdj/psqueues.git |
Uploaded | by JasperVanDerJeugt at 2023-10-27T15:51:37Z |
Distributions | Arch:0.2.8.0, Debian:0.2.7.2, Fedora:0.2.7.3, LTSHaskell:0.2.8.0, NixOS:0.2.8.0, Stackage:0.2.8.0, openSUSE:0.2.8.0 |
Reverse Dependencies | 37 direct, 3626 indirect [details] |
Downloads | 72548 total (395 in the last 30 days) |
Rating | 2.5 (votes: 3) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2023-10-27 [all 1 reports] |