A skip list is a probabilistic data structure for storing and retrieving sorted data.
5
votes
1answer
104 views
Implementing a swap method for an indexable concurrent skip list
I'm implementing a concurrent skip list map based on Java's ConcurrentSkipListMap, the differences being that I want the list to allow duplicates, and I also want the list to be indexable (so that ...
1
vote
1answer
61 views
Ruby function to calculate average search time for a skip list
I'm trying to write a ruby function to determine the average expected search time for a skip list. I don't have a strong math background and I believe the results I'm getting from this function are ...
4
votes
2answers
111 views
Don't skip lists have the same limitation as arrays?
Would I be right in saying, Skip Lists like arrays can be very efficient if one knows the 'n' (number of elements to be stored) beforehand?
Maxlevel of a skip list is (log n + 1), and since I need ...
1
vote
1answer
71 views
Inserting into a skiplist
I am developing my own skiplist template class. Below are its specifications: Iterator class holds copy of individual skip list. The Head and Tail Iterators are always empty and tail iterator has its ...
1
vote
1answer
102 views
Why is my time complexity of inserting in skip list linear?
I have implemented skip list for integers. When testing method insert, I insert natural numbers from 1 to 1000000 in a for loop with counter j. I am using stopwatch also.
Appendix: in the real ...
4
votes
4answers
104 views
Balanced binary trees versus indexed skiplists
Not sure if the question should be here or on programmers (or some other SE site), but I was curious about the relevant differences between balanced binary trees and indexable skiplists. The issue ...
0
votes
1answer
380 views
how to build a skip list [closed]
I was wondering how to build a skip list in python.
I have made a link list but I'm having trouble on how to create the different levels of a link list and how i would go about iterating through ...
0
votes
3answers
48 views
find the difference of the dates?
I have bunch of events are scheduled, and I want to check if there is a 10day interval in my scheduled events where within that 10 day there is no event is taking place. Is there good data structure ...
1
vote
1answer
134 views
Indexable skiplist implementations in C++
All of the skip list implementations I have found so far use keys and associate them with values.
But what I need is a skip list, where I can insert a value at an index position i, so that all the ...
2
votes
1answer
219 views
Dualities between data structures [closed]
If there is a duality between skip lists and binary search trees then it seems reasonable to expect to find dualities between other pairs of data structures, perhaps even some that have not yet been ...
0
votes
1answer
220 views
how lucene use skip list in inverted index?
In some blogs and lucene website,I know lucene use data structure "skip list" in inverted index. But I have some puzzle about it.
1:In general,skip list maybe used in memory ,but inverted index is ...
4
votes
3answers
213 views
skip list for small data sets
I am rather interested in using a skip list for a Open list for A*. However what bugs me is the probabilistic nature of it. Open lists can vary from very small sets on up to hugh numbers of nodes ...
5
votes
1answer
180 views
Why is ConcurrentNavigableMap implemented as a skip list?
Recently I run into ConcurrentSkipListMap, which is a skip list implementation of ConcurrentNavigableMap. Now I wonder, why it is implemented as a skip list.
Does skip list a "standard" ...
0
votes
2answers
243 views
the time complexity of Skip List
May I know why the time complexity of insertion of skip list is O(log n) for average case, and why the height of Skip list with n elements is O(log n) in high probability. And why average search time ...
6
votes
1answer
170 views
why does qmap uses skiplist instead ob rb-tree?
I wounder why does QMap realised over skiplist data-structure and not rb-tree?
There is very interesting SO thread about concurrency data-structs and skip-list benefits over rb-tree, pros and cons. ...
1
vote
2answers
147 views
Insertion and removal time in a Skip List
I am little confused on the time it takes to insert or remove an element from a skip list.
Lets say there is a skip list with height H and each level contains n/2^i entries.
n = total number of key ...
0
votes
1answer
222 views
c++ linked list to skiplist conversion
I want to convert a (simple linked) list into a skiplist which is derived from linked list.
Inside the conversion ctor which gets a (linked-)list as param, i get a stackoverflow at *.
I just call that ...
3
votes
2answers
246 views
Expected space consumption of skip lists
What is the expected space used by the skip list after inserting n elements?
I expect that in the worst case the space consumption may grow indefinitely.
Wikipedia says “Space O(n)”.
How can this ...
1
vote
1answer
73 views
What does the skiplistnode variable “span” mean in redis.h?
In redis.h, the skipnode is defined as below:
typedef struct zskiplistNode {
robj *obj;
double score;
struct zskiplistNode *backward;
struct zskiplistLevel {
struct ...
1
vote
1answer
424 views
Ideal Skip list ? O(n) run-time?
I'm trying to find the best algorithm for
converting an "ordinary" linked list
into an `ideal skip list`
.
Where the definition of an ideal skip list is that in the first level we'll have all
...
4
votes
1answer
165 views
Need info about skip-lists
In a skip-list such as this one:
Does the element 4 have access to itself in the second and third list? The reason I ask is because I'm trying to figure out how to implement the delete operation ...
0
votes
2answers
248 views
Lock free doubly linked skip list
There exists tons of research on lock-free doubly linked list. Likewise, there is tons of reserach on lock-free skip lists. As best I can tell, however, nobody has managed a lock free doubly linked ...
0
votes
1answer
191 views
lock-free skiplist with rank operation
Is anyone aware of any lock-free skiplist implimentations and/or research papers that support the rank operation (i.e. find kth element)? Alternatively, is anyone aware of a fundamental reason why ...
-2
votes
2answers
128 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 ...
2
votes
2answers
441 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?
...
1
vote
2answers
1k 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 ...
4
votes
2answers
818 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 ...
5
votes
1answer
584 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.
2
votes
2answers
593 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
385 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 ...
0
votes
1answer
164 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
1k 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 ...
4
votes
3answers
1k 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 ...
1
vote
2answers
187 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>
...
12
votes
2answers
3k 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?
3
votes
2answers
818 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;
...
5
votes
3answers
4k 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 ...
60
votes
7answers
19k 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 ...
15
votes
6answers
2k 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, ...
