skiplist

Crates.ioskiplist
lib.rsskiplist
version0.5.1
sourcesrc
created_at2015-03-03 10:18:44.72637
updated_at2023-04-04 22:01:40.200282
descriptionSkiplist implementation in rust, providing fast insertion and removal. A normal skiplist is implemented, as well as an ordered skiplist and a skipmap.
homepagehttps://www.jpellis.me/projects/rust-skiplist/
repositoryhttps://www.github.com/JP-Ellis/rust-skiplist/
max_upload_size
id1514
size220,988
JP-Ellis (JP-Ellis)

documentation

https://docs.rs/skiplist

README

Rust Skiplist

crates.io crates.io Codecov branch Build Status

A skiplist provides a way of storing data with log(i) access, insertion and removal for an element in the ith position.

There are three kinds of collections defined here:

  • SkipList This behaves like nearly any other double-ended list.
  • OrderedSkipList Ensures that the elements are always sorted. Still allows for access nodes at a given index.
  • SkipMap A map in which the keys are ordered.

Documentation can be found on docs.rs and the cargo crate can be found on crates.io.

Commit count: 0

cargo fmt