A skip list is an ordered linked list augmented with multiple "express lane" levels. Higher levels skip over many nodes, so search descends and moves right, achieving O(log n) expected time — like a probabilistic, simpler alternative to a balanced tree.
Structure
text
L3: head ------------------------> 30 -------> NIL
L2: head ----------> 17 ---------> 30 -------> NIL
L1: head ----> 9 --> 17 --> 25 --> 30 --> 42 -> NIL
L0: head -> 3->9->12->17->25->30->39->42 ----> NIL (full list)
