awesome-elixir
awesome-elixir copied to clipboard
Add Package "skiplist"
Title
Add Package "skiplist"
Description
Add the Package "skip_list" from github Link: https://github.com/tt67wq/SkipList_elixir
Description: Wiki: https://en.wikipedia.org/wiki/Skip_list skiplist is a data structure that allows fast search within an ordered sequence of elements
- used in redis
- O(logN) in search
- much easier than rbtree
this repo is the implement of skip list in elixir