Skip to content

Latest commit

 

History

History

Skip-List

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Skip List

Skip List is a probablistic data-structure with same efficiency as AVL tree or Red-Black tree. The building blocks are hierarchy of layers (regular sorted linked-lists), created probablisticly by coin flipping, each acting as an express lane to the layer underneath, therefore making fast O(log n) search possible by skipping lanes and reducing travel distance. A layer consists of a Head node, holding reference to the subsequent and the node below. Each node also holds similar references as the Head node.

Schematic view #TODO

  • finish readme