Rust Skiplist

A skiplist provides a way of storing data in a list in such as way that they are always sorted. This implementation is done in Rust. In general, an operation (insertion, removal, access) on an element that is (or will be) in the ith position will be executed in O(log(i)).

Documentation can be found here.