Tagged Questions

31
votes
7answers
10k 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, ...
2
votes
3answers
180 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
144 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
175 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
378 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
47 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 ...