Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Data Structure] Skip List [Python] #234

Open
tanseersaji opened this issue Oct 3, 2018 · 2 comments
Open

[Data Structure] Skip List [Python] #234

tanseersaji opened this issue Oct 3, 2018 · 2 comments
Assignees

Comments

@tanseersaji
Copy link
Member

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

@sangamcse sangamcse changed the title [Data Structure] Skip List Python [Data Structure] Skip List [Python] Oct 3, 2018
@sangamcse
Copy link
Member

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

@sangamcse sangamcse added enhancement New feature or request lang/C and removed lang/Python labels Oct 3, 2018
tanseersaji added a commit to tanseersaji/Algorithms that referenced this issue Oct 3, 2018
This adds the implementation of Skip List Data Structure in python, this also adds the operation that can be done in a SkipList Data Structure like Insertion, Deletion, Traversal.

Closes NITSkmOS#234
@sanghisha145
Copy link

will do this.

tanseersaji added a commit to tanseersaji/Algorithms that referenced this issue Oct 4, 2018
This adds the implementation of Skip List Data Structure in python, this also adds the operation that can be done in a SkipList Data Structure like Insertion, Deletion, Traversal.

Closes NITSkmOS#234
tanseersaji added a commit to tanseersaji/Algorithms that referenced this issue Oct 4, 2018
This adds the implementation of Skip List Data Structure in python, this also adds the operation that can be done in a SkipList Data Structure like Insertion, Deletion, Traversal.

Closes NITSkmOS#234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants