linked-list-with-iterator: A pure linked list which is mutable through iterators.
It's iternally implemented by Data.IntMap.Strict.IntMap
or Data.Map.Strict.Map
Integer
,
using Int
or Integer
as the iterator type respectly.
Most of the operations cost O(lg N)
.
Each newly inserted element will consume a unique number and never reuse old numbers.
Choose Int
one if you're sure that there're no more than Int
space times of insertions,
or choose Integer
one otherwise.
Downloads
- linked-list-with-iterator-0.1.0.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1.0.0, 0.1.1.0 |
---|---|
Dependencies | base (>=4.3 && <5), containers (>=0.5 && <0.6) [details] |
License | BSD-3-Clause |
Copyright | MIT |
Author | Cindy Wang (CindyLinz) |
Maintainer | cindylinz@gmail.com |
Category | Data Structures |
Home page | https://github.com/CindyLinz/Haskell-linked-list-with-iterator#readme |
Source repo | head: git clone https://github.com/CindyLinz/Haskell-linked-list-with-iterator |
Uploaded | by CindyLinz at 2016-09-28T10:45:30Z |
Distributions | |
Reverse Dependencies | 1 direct, 0 indirect [details] |
Downloads | 1471 total (9 in the last 30 days) |
Rating | 2.0 (votes: 1) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2016-09-28 [all 1 reports] |