All Projects → JP-Ellis → Rust Skiplist

JP-Ellis / Rust Skiplist

Licence: mit
Skiplist implementation in rust

Programming Languages

rust
11053 projects

Labels

Projects that are alternatives of or similar to Rust Skiplist

tokio-tun
Asynchronous allocation of TUN/TAP devices in Rust using tokio
Stars: ✭ 17 (-55.26%)
Mutual labels:  crates
Ggez
Rust library to create a Good Game Easily
Stars: ✭ 3,120 (+8110.53%)
Mutual labels:  crates
Ritual
Use C++ libraries from Rust
Stars: ✭ 792 (+1984.21%)
Mutual labels:  crates
rtriangulate
A Rust implementation of the Bourke Delaunay triangulation algorithm.
Stars: ✭ 20 (-47.37%)
Mutual labels:  crates
sorceress
A Rust environment for sound synthesis and algorithmic composition.
Stars: ✭ 64 (+68.42%)
Mutual labels:  crates
Rust Search Extension
🦀 The ultimate search extension for Rust
Stars: ✭ 540 (+1321.05%)
Mutual labels:  crates
cargo-esr
Extended Search & Ranking tool for crates.
Stars: ✭ 23 (-39.47%)
Mutual labels:  crates
Rust Multibase
Multibase in rust
Stars: ✭ 30 (-21.05%)
Mutual labels:  crates
Rspotify
Spotify Web API SDK implemented in Rust
Stars: ✭ 255 (+571.05%)
Mutual labels:  crates
Colored
(Rust) Coloring terminal so simple you already know how to do it !
Stars: ✭ 715 (+1781.58%)
Mutual labels:  crates
MysteryCrate
PLUGIN ARCHIVED. USE https://github.com/DaPigGuy/PiggyCrates instead!
Stars: ✭ 30 (-21.05%)
Mutual labels:  crates
crates
🌎 A tool to generate your locale files compatible with i18n.
Stars: ✭ 52 (+36.84%)
Mutual labels:  crates
Prettytable Rs
A rust library to print aligned and formatted tables
Stars: ✭ 552 (+1352.63%)
Mutual labels:  crates
rs-poker
No description or website provided.
Stars: ✭ 32 (-15.79%)
Mutual labels:  crates
Tantivy Jieba
An adapter that bridges between tantivy and jieba-rs.
Stars: ✭ 17 (-55.26%)
Mutual labels:  crates
crate-trends
🦀Visualize Rust Package: Crates comparison website
Stars: ✭ 14 (-63.16%)
Mutual labels:  crates
Cargo Deny
❌ Cargo plugin for linting your dependencies 🦀
Stars: ✭ 533 (+1302.63%)
Mutual labels:  crates
Syntect
Rust library for syntax highlighting using Sublime Text syntax definitions.
Stars: ✭ 972 (+2457.89%)
Mutual labels:  crates
Rusticsom
Rust library for Self Organising Maps (SOM).
Stars: ✭ 18 (-52.63%)
Mutual labels:  crates
Bracket Lib
The Roguelike Toolkit (RLTK), implemented for Rust.
Stars: ✭ 631 (+1560.53%)
Mutual labels:  crates

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].