psqueues: Pure priority search queues
This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.
Warnings:
- [option-o2] 'ghc-options: -O2' is rarely needed. Check that it is giving a real benefit and not just imposing longer compile times on your users.
- [missing-upper-bounds] On library, these packages miss upper bounds: - ghc-prim Please add them. There is more information at https://pvp.haskell.org/
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*.
Properties
Versions | 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, 0.2.8.1, 0.2.8.1 |
---|---|
Change log | CHANGELOG |
Dependencies | base (>=4.2 && <5), deepseq (>=1.2 && <1.6), ghc-prim, hashable (>=1.1.2.3 && <1.6) [details] |
License | BSD-3-Clause |
Author | |
Maintainer | Jasper Van der Jeugt <jaspervdj@gmail.com> |
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 2025-01-28T00:07:06Z |
Modules
[Index] [Quick Jump]
Downloads
- psqueues-0.2.8.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
Package maintainers
For package maintainers and hackage trustees