vote up 6 vote down star
2

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 binary search tree?

flag

67% accept rate

7 Answers

vote up 2 vote down check

From the wiki you quoted:

Θ(n) operations, which force us to visit every node in ascending order (such as printing the entire list) provide the opportunity to perform a behind-the-scenes derandomization of the level structure of the skip-list in an optimal way, bringing the skip list to O(log n) search time. [...] A skip list, upon which we have not recently performed [any such] Θ(n) operations, does not provide the same absolute worst-case performance guarantees as more traditional balanced tree data structures, because it is always possible (though with very low probability) that the coin-flips used to build the skip list will produce a badly balanced structure

EDIT: so it's a trade-off: Skip Lists use less memory at the risk that they might degenerate into an unbalanced tree.

link|flag
this would be a reason against using the skip list. – Claudiu Nov 2 '08 at 4:50
@Mitch: Stop directly copying from wikipedia en.wikipedia.org/wiki/Skip_list "....which we have not recently performed either of the above mentioned..." Which above? – askgelal Nov 2 '08 at 5:32
@askgelal: I was assuming you had actually read the article you in fact quoted. I think you meant to say "Please stop directly..." – Mitch Wheat Nov 2 '08 at 5:43
quoting MSDN, "The chances [for 100 level 1 elements] are precisely 1 in 1,267,650,600,228,229,401,496,703,205,376". – peterchen Nov 2 '08 at 10:03
Why would you say that they use less memory? – Jonathan Nov 16 '08 at 6:46
vote up 6 vote down

It also appears that skip lists are more amenable to parallel execution. I'm getting my information from an article by Herb Sutter.

The basic idea is that red-black trees often need to rebalance when a node is inserted or deleted. The rebalance operation can affect large portions of the tree, which would require a mutex lock on many of the tree nodes. Inserting a node into a skip list is far more localized, only nodes directly linked to the affected node need to be locked.

link|flag
Not to mention that in a non-degenerate skiplist, about 50% of the nodes should only have a single link which makes insert and delete remarkably efficient. – Adisak Oct 30 at 3:44
vote up 5 vote down

Also, in addition to the answers given (ease of implementation combined with comparable performance to a balanced tree). I find that implementing in-order traversal (forwards and backwards) is far simpler because a skip-list effectively has a linked list inside its implementation.

link|flag
isn't in-order traversal for a bin tree as simple as: "def func(node): func(left(node)); op(node); func(right(node))"? – Claudiu Nov 2 '08 at 18:35
3  
Sure, that true if you want to traverse all in one function call. but it gets much more annoying if you want to have iterator style traversal like in std::map. – Evan Teran Nov 3 '08 at 4:20
vote up 2 vote down

Skip lists are implemented using lists.

Lock free solutions exist for singly and doubly linked lists - but there are no lock free solutions which directly using only CAS for any O(logn) data structure.

You can however use CAS based lists to create skip lists.

(Note that MCAS, which is created using CAS, permits arbitrary data structures and a proof of concept red-black tree had been created using MCAS).

So, odd as they are, they turn out to be very useful :-)

link|flag
vote up 1 vote down

You might want to look at splay trees too. They are also quite easy to implement and tend toward balance.

I would try to avoid randomized approximation algorithms (e.g., skip lists) if you're going to write unit tests for the data structure.

link|flag
vote up 1 vote down

In practice I've found that B-tree performance on my projects has worked out to be better than skip-lists. Skip lists do seem easier to understand but implementing a B-tree is not that hard.

The one advantage that I know of is that some clever people have worked out how to implement a lock-free concurrent skip list that only uses atomic operations. For example, Java 6 contains the ConcurrentSkipListMap class, and you can read the source code to it if you are crazy.

But it's not too hard to write a concurrent B-tree variant either - I've seen it done by someone else - if you preemptively split and merge nodes "just in case" as you walk down the tree then you won't have to worry about deadlocks and only ever need to hold a lock on two levels of the tree at a time. The synchronization overhead will be a bit higher but the B-tree is probably faster.

link|flag
vote up 0 vote down

Not much difference but in whatever I've learned till date, Skip List is somewhat easy to implement than binary search tree.

link|flag
easier to implement? How so? – Mitch Wheat Nov 2 '08 at 4:48
1  
Maybe easier to implement than a balanced tree, but not a binary tree! – Mitch Wheat Nov 2 '08 at 4:51
I looked into them once and got stuck at the point of needing a portable, decent source of randomness. Eventually I went with AVL Trees which had a decent free implementation. – dajobe Nov 14 '08 at 4:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.