套件:libghc-psqueues-dev(0.2.7.0-2 以及其他的)
libghc-psqueues-dev 的相關連結
Debian 的資源:
下載原始碼套件 haskell-psqueues:
- [haskell-psqueues_0.2.7.0-2.dsc]
- [haskell-psqueues_0.2.7.0.orig.tar.gz]
- [haskell-psqueues_0.2.7.0-2.debian.tar.xz]
維護小組:
外部的資源:
- 主頁 [hackage.haskell.org]
相似套件:
Pure priority search queues
This package provides Priority Search Queues in three different flavors.
* OrdPSQ k p v, which uses the Ord 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 to Int and uses a radix tree (like IntMap) with an additional min-heap property.
* HashPSQ k p v is a fairly straightforward extension of IntPSQ: it simply uses the keys' hashes as indices in the IntPSQ. If there are any hash collisions, it uses an OrdPSQ to resolve those. The performance of this implementation is comparable to that of IntPSQ, but it is more widely applicable since the keys are not restricted to Int, but rather to any Hashable datatype.
Each of the three implementations provides the same API, so they can be used interchangeably.
Typical applications of Priority Search Queues include:
* Caches, and more specifically LRU Caches;
* Schedulers;
* Pathfinding algorithms, such as Dijkstra's and A*.
This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
其他與 libghc-psqueues-dev 有關的套件
|
|
|
|
-
- dep: libatomic1 (>= 4.8)
- support library providing __atomic built-in functions
-
- dep: libc6 (>= 2.2.5)
- GNU C 函式庫:共用函式庫
同時作為一個虛擬套件由這些套件填實: libc6-udeb
-
- dep: libghc-base-dev-4.11.1.0-5dd74
- 本虛擬套件由這些套件填實: ghc
-
- dep: libghc-deepseq-dev-1.4.3.0-17e4f
- 本虛擬套件由這些套件填實: ghc
-
- dep: libghc-ghc-prim-dev-0.5.2.0-0a259
- 本虛擬套件由這些套件填實: ghc
-
- dep: libghc-hashable-dev-1.2.7.0-68a88
- 本虛擬套件由這些套件填實: libghc-hashable-dev
-
- dep: libgmp10
- Multiprecision arithmetic library
-
- sug: libghc-psqueues-doc
- Pure priority search queues; documentation
-
- sug: libghc-psqueues-prof
- Pure priority search queues; profiling libraries