An open API service indexing awesome lists of open source software.

https://github.com/abbychau/jumplist

It is a fast, short, documented skip list.
https://github.com/abbychau/jumplist

Last synced: 2 months ago
JSON representation

It is a fast, short, documented skip list.

Awesome Lists containing this project

README

        

# jumplist

It is a fast, short, documented skip list.

## Why is it called jumplist

When you talk about forward movement with little hops and steps, use "skip". But for skip lists, it can be large leap and small skips.

It is also very likely to **jump** from high to low in towers in skip lists too.

So **jumplist**.

## Settings
Number of Levels : 18 (good for e^18 ~= 66M elements)

Ratio between layers: 1/e (~=0.368)

Thread-safe: YES