Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 574 Bytes

69-skiplist.md

File metadata and controls

18 lines (15 loc) · 574 Bytes
layout title date comments categories language references
post
Skiplist
2018-10-09 12:39
true
system design, data structures
en

A skip-list is essentially a linked list that allows you to binary search on it. The way it accomplishes this is by adding extra nodes that will enable you to 'skip' sections of the linked-list. Given a random coin toss to create the extra nodes, the skip list should have O(logn) searches, inserts and deletes.

Usecases

  • LevelDB MemTable
  • Redis SortedSet
  • Lucene inverted index