Algorithms icon indicating copy to clipboard operation
Algorithms copied to clipboard

[Data Structure] Skip List [Python]

Open tanseersaji opened this issue 6 years ago • 2 comments

Skip list is a probabilistic data structure that allows efficient search, insertion and removal operations. It allows fast search within an ordered sequence of elements, O(log(n)) complexity. Wikipedia Page: https://en.wikipedia.org/wiki/Skip_list

tanseersaji avatar Oct 03 '18 16:10 tanseersaji

GitMate.io thinks possibly related issues are https://github.com/NITSkmOS/Algorithms/issues/55 ([Data Structure] Queue [Python]), https://github.com/NITSkmOS/Algorithms/issues/51 ([Data Structure] Binary Search Tree [Python]), https://github.com/NITSkmOS/Algorithms/issues/220 ([Data Structure] Fenwick Tree [Python] ), https://github.com/NITSkmOS/Algorithms/issues/25 ([DataStructure] Linear Linked List [Python]), and https://github.com/NITSkmOS/Algorithms/issues/50 ([Data Structure] AVL Tree [Python]).

sangamcse avatar Oct 03 '18 16:10 sangamcse

will do this.

sanghisha145 avatar Oct 04 '18 09:10 sanghisha145