skip list

{{Short description|Probabilistic data structure}}

{{Infobox data structure

| name = Skip list

| type = List

| invented_by = W. Pugh

| invented_year = 1989

| space_avg = \theta(n)

| space_worst = O(n\log n){{cite thesis |title=Skip Lists and Probabilistic Analysis of Algorithms |first=Thomas |last=Papadakis |type=Ph.D. |year=1993 |publisher=University of Waterloo |url=http://www.cs.uwaterloo.ca/research/tr/1993/28/root2side.pdf}}

| search_avg = \theta(\log n)

| search_worst = O(n)

| insert_avg = \theta(\log n)

| insert_worst = O(n)

| delete_avg = \theta(\log n)

| delete_worst = O(n)

}}

{{Probabilistic}}

In computer science, a skip list (or skiplist) is a probabilistic data structure that allows O(\log n) average complexity for search as well as O(\log n) average complexity for insertion within an ordered sequence of n elements. Thus it can get the best features of a sorted array (for searching) while maintaining a linked list-like structure that allows insertion, which is not possible with a static array. Fast search is made possible by maintaining a linked hierarchy of subsequences, with each successive subsequence skipping over fewer elements than the previous one (see the picture below on the right). Searching starts in the sparsest subsequence until two consecutive elements have been found, one smaller and one larger than or equal to the element searched for. Via the linked hierarchy, these two elements link to elements of the next sparsest subsequence, where searching is continued until finally searching in the full sequence. The elements that are skipped over may be chosen probabilistically{{Cite journal | doi = 10.1145/78973.78977| title = Skip lists: A probabilistic alternative to balanced trees| journal = Communications of the ACM| volume = 33| issue = 6| pages = 668–676| year = 1990| last1 = Pugh | first1 = W. | s2cid = 207691558| author-link1 = William Pugh (computer scientist) | url = ftp://ftp.cs.umd.edu/pub/skipLists/skiplists.pdf}} or deterministically,{{cite conference |url=https://www.ic.unicamp.br/~celio/peer2peer/skip-net-graph/deterministic-skip-lists-munro.pdf |title=Deterministic skip lists |last1=Munro |first1=J. Ian |author-link1=Ian Munro (computer scientist) |last2=Papadakis |first2=Thomas |last3=Sedgewick |first3=Robert |author-link3=Robert Sedgewick (computer scientist) |date=1992 |publisher=Society for Industrial and Applied Mathematics, Philadelphia, PA, USA |book-title=Proceedings of the third annual ACM-SIAM symposium on Discrete algorithms (SODA '92) |pages=367–375 |location=Orlando, Florida, USA |s2cid=7477119}} with the former being more common.

Description

File:Skip list.svg giving a sparse subsequence; the numbered boxes (in yellow) at the bottom represent the ordered data sequence. Searching proceeds downwards from the sparsest subsequence at the top until consecutive elements bracketing the search element are found.]]

A skip list is built in layers. The bottom layer 1 is an ordinary ordered linked list. Each higher layer acts as an "express lane" for the lists below, where an element in layer i appears in layer i+1 with some fixed probability p (two commonly used values for p are 1/2 or 1/4). On average, each element appears in 1/(1-p) lists, and the tallest element (usually a special head element at the front of the skip list) appears in all the lists. The skip list contains \log_{1/p}n\, (i.e. logarithm base 1/p of n) lists.

A search for a target element begins at the head element in the top list, and proceeds horizontally until the current element is greater than or equal to the target. If the current element is equal to the target, it has been found. If the current element is greater than the target, or the search reaches the end of the linked list, the procedure is repeated after returning to the previous element and dropping down vertically to the next lower list. The expected number of steps in each linked list is at most 1/p, which can be seen by tracing the search path backwards from the target until reaching an element that appears in the next higher list or reaching the beginning of the current list. Therefore, the total expected cost of a search is \tfrac{1}{p}\log_{1/p}n which is O(\log n)\,, when p is a constant. By choosing different values of p, it is possible to trade search costs against storage costs.

= Implementation details =

File:Skip list add element-en.gif

The elements used for a skip list can contain more than one pointer since they can participate in more than one list.

Insertions and deletions are implemented much like the corresponding linked-list operations, except that "tall" elements must be inserted into or deleted from more than one linked list.

O(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. (Choose the level of the i'th finite node to be 1 plus the number of times it is possible to repeatedly divide i by 2 before it becomes odd. Also, i=0 for the negative infinity header as there is the usual special case of choosing the highest possible level for negative and/or positive infinite nodes.) However this also allows someone to know where all of the higher-than-level 1 nodes are and delete them.

Alternatively, the level structure could be made quasi-random in the following way:

make all nodes level 1

j ← 1

while the number of nodes at level j > 1 do

for each i'th node at level j do

if i is odd and i is not the last node at level j

randomly choose whether to promote it to level j+1

else if i is even and node i-1 was not promoted

promote it to level j+1

end if

repeat

j ← j + 1

repeat

Like the derandomized version, quasi-randomization is only done when there is some other reason to be running an O(n) operation (which visits every node).

The advantage of this quasi-randomness is that it doesn't give away nearly as much level-structure related information to an adversarial user as the de-randomized one. This is desirable because an adversarial user who is able to tell which nodes are not at the lowest level can pessimize performance by simply deleting higher-level nodes. (Bethea and Reiter however argue that nonetheless an adversary can use probabilistic and timing methods to force performance degradation.{{cite conference |first1=Darrell |last1=Bethea |first2=Michael K. |last2=Reiter |title=Data Structures with Unpredictable Timing |url=https://www.cs.unc.edu/~djb/papers/2009-ESORICS.pdf#page=5 |at=pp. 456–471, §4 "Skip Lists" |doi=10.1007/978-3-642-04444-1_28 |conference=ESORICS 2009, 14th European Symposium on Research in Computer Security |location=Saint-Malo, France |date=September 21–23, 2009 |isbn=978-3-642-04443-4}}) The search performance is still guaranteed to be logarithmic.

It would be tempting to make the following "optimization": In the part which says "Next, for each ith...", forget about doing a coin-flip for each even-odd pair. Just flip a coin once to decide whether to promote only the even ones or only the odd ones. Instead of O(n \log n) coin flips, there would only be O(\log n) of them. Unfortunately, this gives the adversarial user a 50/50 chance of being correct upon guessing that all of the even numbered nodes (among the ones at level 1 or higher) are higher than level one. This is despite the property that there is a very low probability of guessing that a particular node is at level N for some integer N.

A skip list 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{{cite journal |last1=Sen |first1=Sandeep |title=Some observations on skip lists |journal=Information Processing Letters |date=1991 |volume=39 |issue=4 |pages=173–176 |doi=10.1016/0020-0190(91)90175-H }}) that the coin-flips used to build the skip list will produce a badly balanced structure. However, they work well in practice, and the randomized balancing scheme has been argued to be easier to implement than the deterministic balancing schemes used in balanced binary search trees. Skip lists are also useful in parallel computing, where insertions can be done in different parts of the skip list in parallel without any global rebalancing of the data structure. Such parallelism can be especially advantageous for resource discovery in an ad-hoc wireless network because a randomized skip list can be made robust to the loss of any single node.{{cite thesis |type=Ph.D. thesis | last=Shah | first=Gauri | title=Distributed Data Structures for Peer-to-Peer Systems | year=2003 | url=http://www.cs.yale.edu/homes/shah/pubs/thesis.pdf |publisher=Yale University}}

= Indexable skiplist =

As described above, a skip list is capable of fast O(\log n) insertion and removal of values from a sorted sequence, but it has only slow O(n) lookups of values at a given position in the sequence (i.e. return the 500th value); however, with a minor modification the speed of random access indexed lookups can be improved to O(\log n).

For every link, also store the width of the link. The width is defined as the number of bottom layer links being traversed by each of the higher layer "express lane" links.

For example, here are the widths of the links in the example at the top of the page:

1 10

o---> o---------------------------------------------------------> o Top level

1 3 2 5

o---> o---------------> o---------> o---------------------------> o Level 3

1 2 1 2 3 2

o---> o---------> o---> o---------> o---------------> o---------> o Level 2

1 1 1 1 1 1 1 1 1 1 1

o---> o---> o---> o---> o---> o---> o---> o---> o---> o---> o---> o Bottom level

Head 1st 2nd 3rd 4th 5th 6th 7th 8th 9th 10th NIL

Node Node Node Node Node Node Node Node Node Node

Notice that the width of a higher level link is the sum of the component links below it (i.e. the width 10 link spans the links of widths 3, 2 and 5 immediately below it). Consequently, the sum of all widths is the same on every level (10 + 1 = 1 + 3 + 2 + 5 = 1 + 2 + 1 + 2 + 3 + 2).

To index the skip list and find the i'th value, traverse the skip list while counting down the widths of each traversed link. Descend a level whenever the upcoming width would be too large.

For example, to find the node in the fifth position (Node 5), traverse a link of width 1 at the top level. Now four more steps are needed but the next width on this level is ten which is too large, so drop one level. Traverse one link of width 3. Since another step of width 2 would be too far, drop down to the bottom level. Now traverse the final link of width 1 to reach the target running total of 5 (1+3+1).

function lookupByPositionIndex(i)

node ← head

i ← i + 1 # don't count the head as a step

for level from top to bottom do

while i ≥ node.width[level] do # if next step is not too far

i ← i - node.width[level] # subtract the current width

node ← node.next[level] # traverse forward at the current level

repeat

repeat

return node.value

end function

This method of implementing indexing is detailed in "A skip list cookbook" by William Pugh

William Pugh.

"A skip list cookbook".

1990.

[https://drum.lib.umd.edu/items/56c44671-3973-46b6-9e52-f71dc95af178 Section 3.4 Linear List Operations ].

History

Skip lists were first described in 1989 by William Pugh.{{cite tech report |first=William |last=Pugh |author-link=William Pugh (computer scientist) |date=April 1989 |title=Concurrent Maintenance of Skip Lists |number=CS-TR-2222 |institution=Dept. of Computer Science, U. Maryland |url=http://drum.lib.umd.edu/handle/1903/542 |format=PS, PDF}}

To quote the author:

{{blockquote

|text=Skip lists are a probabilistic data structure that seem likely to supplant balanced trees as the implementation method of choice for many applications. Skip list algorithms have the same asymptotic expected time bounds as balanced trees and are simpler, faster and use less space.

|author=William Pugh

|source=Concurrent Maintenance of Skip Lists (1989)

}}

Usages

List of applications and frameworks that use skip lists:

[https://apr.apache.org/docs/apr/1.6/group__apr__skiplist.html Apache Portable Runtime APR 1.6 documentation]

LWN's

[https://lwn.net/Articles/720227 article]

{{Cite web|url=https://lkml.org/lkml/2016/10/29/4|title=LKML: Con Kolivas: [ANNOUNCE] Multiple Queue Skiplist Scheduler version 0.120|website=lkml.org|access-date=2017-05-11}}

Cyrus IMAP server.

[https://github.com/cyrusimap/cyrus-imapd/blob/master/lib/cyrusdb_skiplist.c skiplist source file]

  • Lucene uses skip lists to search delta-encoded posting lists in logarithmic time.{{Citation needed|date=June 2014}}
  • The "QMap" key/value dictionary (up to Qt 4) template class of Qt is implemented with skip lists.

[http://qt-project.org/doc/qt-4.8/qmap.html#details QMap]

  • Redis, an ANSI-C open-source persistent key/value store for Posix systems, uses skip lists in its implementation of ordered sets.{{cite web | title=Redis ordered set implementation | website=GitHub| url=https://github.com/antirez/redis/blob/unstable/src/t_zset.c}}
  • Discord uses skip lists to handle storing and updating the list of members in a server.{{cite web |last1=Nowack |first1=Matt |title=Using Rust to Scale Elixir for 11 Million Concurrent Users |url=https://discord.com/blog/using-rust-to-scale-elixir-for-11-million-concurrent-users |website=Discord Blog |access-date=23 July 2023}}
  • RocksDB uses skip lists for its default Memtable implementation.{{Cite web |title=MemTable |url=https://github.com/facebook/rocksdb/wiki/MemTable |access-date=2023-12-12 |website=GitHub |language=en}}

Skip lists are also used in distributed applications (where the nodes represent physical computers, and pointers represent network connections) and for implementing highly scalable concurrent priority queues with less lock contention,{{Cite book | doi = 10.1109/IPDPS.2000.845994| chapter = Skiplist-based concurrent priority queues| title = Proceedings 14th International Parallel and Distributed Processing Symposium. IPDPS 2000| pages = 263| year = 2000| last1 = Shavit | first1 = N.| last2 = Lotan | first2 = I.| isbn = 978-0-7695-0574-9| chapter-url = http://www.cs.tau.ac.il/~shanir/nir-pubs-web/Papers/Priority_Queues.pdf| citeseerx = 10.1.1.116.3489| s2cid = 8664407}} or even without locking,{{Cite book | last1 = Sundell | first1 = H. | last2 = Tsigas | first2 = P. | doi = 10.1109/IPDPS.2003.1213189 | chapter = Fast and lock-free concurrent priority queues for multi-thread systems | title = Proceedings International Parallel and Distributed Processing Symposium | pages = 11 | year = 2003 | isbn = 978-0-7695-1926-5 | citeseerx = 10.1.1.113.4552 | s2cid = 20995116 }}{{Cite conference | last1 = Fomitchev | first1 = Mikhail| last2 = Ruppert | first2 = Eric| doi = 10.1145/1011767.1011776 | title = Lock-free linked lists and skip lists | conference = Proc. Annual ACM Symp. on Principles of Distributed Computing (PODC)| pages = 50–59| year = 2004 | isbn = 1581138024 | url = http://www.cse.yorku.ca/~ruppert/papers/lfll.pdf}}{{Cite book | last1 = Bajpai | first1 = R. | last2 = Dhara | first2 = K. K. | last3 = Krishnaswamy | first3 = V. | doi = 10.1109/ISPA.2008.90 | chapter = QPID: A Distributed Priority Queue with Item Locality | title = 2008 IEEE International Symposium on Parallel and Distributed Processing with Applications | pages = 215 | year = 2008 | isbn = 978-0-7695-3471-8 | s2cid = 15677922 }} as well as lock-free concurrent dictionaries.{{Cite book | last1 = Sundell | first1 = H. K. | last2 = Tsigas | first2 = P. | doi = 10.1145/967900.968188 | chapter = Scalable and lock-free concurrent dictionaries | title = Proceedings of the 2004 ACM symposium on Applied computing - SAC '04 | pages = 1438 | year = 2004 | isbn = 978-1581138122 | s2cid = 10393486 | chapter-url = http://www.cse.chalmers.se/~tsigas/papers/Lock-Free_Dictionary.pdf}} There are also several US patents for using skip lists to implement (lockless) priority queues and concurrent dictionaries.{{cite patent | country=US | number=7937378 | status=patent}}

See also

References

{{Reflist}}