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?
|
2
|
|
|
|
|
|
From the wiki you quoted:
EDIT: so it's a trade-off: Skip Lists use less memory at the risk that they might degenerate into an unbalanced tree. |
||||||||||
|
|
|
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. |
||
|
|
|
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. |
||||||
|
|
|
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 :-) |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Not much difference but in whatever I've learned till date, Skip List is somewhat easy to implement than binary search tree. |
||||||||
|
