Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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, ...
9
votes
2answers
1k views

How to implement lock-free skip list

I need to implement a lock-free skip list. I tried to look for papers. Unfortunatly all I found was lock-free single linked lists (in many flavors). However how to implement lock-free skip list?
4
votes
3answers
550 views

SkipList<T> vs Dictionary<TKey,TValue>

I've been reading about Skip Lists lately. I have a web application that executes quite complex Sql queries against static datasets. I want to implement a caching system whereby I generate an md5 ...
4
votes
3answers
2k views

Implementing Skip List in C++

[SOLVED] So I decided to try and create a sorted doubly linked skip list... I'm pretty sure I have a good grasp of how it works. When you insert x the program searches the base list for the ...
2
votes
2answers
141 views

Redis: Is ZADD better than O(logN) when the inserted element is at the beginning or end?

The redis documentation for ZADD states the operation is O(log N). However, does anyone know if ZADD is better than O(log N) when the inserted element is at the beginning or end of the sort order? ...
2
votes
2answers
254 views

Priority Queue - Skip List vs. Fibonacci Heap

I am interested in implementing a priority queue to enable an efficient Astar implementation that is also relatively simple (the priority queue is simple I mean). It seems that because a Skip List ...
2
votes
2answers
362 views

lock free queue enqueue if not empty

I have implemented a lock free queue in C using compare and swap based on http://www.boyet.com/articles/LockfreeQueue.html. Its working great but I'm trying to integrate this queue into a lock free ...
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
143 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
174 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
1answer
96 views

Evenly placed Skip pointers

I was reading about skip pointers and someone suggested that it is best to put evenly spaced sqrt(len of list) skip pointers. Can someone tell me what "evenly spaced" means here? I will also like to ...
0
votes
2answers
375 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
46 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 ...