skiplist 0.1.1

Skiplist implementation in rust, providing fast insertion and removal from an always-sorted list.
docs.rs failed to build skiplist-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: skiplist-0.5.1

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.