Tagged Questions

31
votes
7answers
11k views

Skip List vs. Binary Tree

I recently came across the data structure known as a Skip list. They seem to have very similar behavior to a binary search tree... my question is - why would you ever want to use a skip list over a ...
13
votes
5answers
1k views

Skip Lists — ever used them?

I'm wondering whether anyone here has ever used a skip list. It looks to have roughly the same advantages as a balanced binary tree, but is simpler to implement. If you have, did you write your own, ...
5
votes
1answer
123 views

Merge of Skip Lists

How can I merge 2 given Skip lists (each with n keys) into a one single Skip List in O(n) time complexity (worst case)? Just looking for the algorithm - no particular implementation/language.
3
votes
2answers
320 views

Deleting a node from a skip list

I'm having some problems deleting a node from a skip list. I have the following structures: struct Node { int info; Node **link_; Node(int v, int levels) { info = v; ...
2
votes
3answers
184 views

Efficient list data structure

I need a list-type data structure to implement in a project. Actually it doesn't necessary have to be some kind of list, but it has to be fast and I'm going to use to it to constantly ...
1
vote
2answers
147 views

Why does this program cause a segfault?

hi guys i am new so i am sure you will help i have some trouble with skip list here is code #include <stdio.h> #include<stdlib.h> #include<time.h> #include <string.h> ...
0
votes
1answer
205 views

Does java have a skip list implementation

I find ConcurrentSkipListSet in Java Collection Framework, which is backed up with a skip list. But is there a skip list in Java? A set does not work in my use case. I need a indexable list that ...
0
votes
2answers
390 views

skiplist- i really need an explanation ,how does it insert and delete

i really dont understand the probabilty thing of this list. in addition to the statement"we have to examine no more than n/2 + 1 nodes (where n is the length of the list).Also giving every fourth node ...
-2
votes
2answers
52 views

skiplist errors what is wrong?

i have implementation of skiplist,but it shows me very unclear error #include<iostream> #include<cstdlib> #include<ctime> #include<cmath> #include<cstring> using ...