Skip to content

Commit 25a82a8

Browse files
authored
Update README.md
1 parent afec24c commit 25a82a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Skip-List/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Skip List is a probablistic data-structure with same efficiency as AVL tree or Red-Black tree. Fast searching is possible by building a hierarchy of sorted linked-lists acting as an express lane to the layer underneath. Layers are created on top of the base layer ( regular sorted linked-list ) probablisticly by coin-flipping.
44

5-
A layer consists of a Head node, holding reference to the next and the node below. Each node has also same references similar to the Head node.
5+
A layer consists of a Head node, holding reference to the next and the node below. Each node also holds references similar to the Head node.
66

77
#TODO
88
- finish readme

0 commit comments

Comments
 (0)