Skiplists were introduced by Pugh [52] who also presented
a number of applications of skiplists [51]. Since then they
have been studied extensively. Several researchers have done very
precise analysis of the expected length and variance in length of the
search path for the
th element in a skiplist [38,37,49].
Deterministic versions [44], biased versions [6,21],
and self-adjusting versions [9] of skiplists have all been
developed. Skiplist implementations have been written for various
languages and frameworks and have seen use in open-source database
systems [60,54]. A variant of skiplists is used in the HP-UX
operating system kernel's process management structures [36].
Skiplists are even part of the Java 1.6 API [46].
Exercise 4..1
Show that, during an
or a
operation, the expected
number of pointers in the structure that get changed is constant.
Exercise 4..2
Suppose that, instead of promoting an element from
into
based on a coin toss, we promote it with some probability
,
. Show that the expected length of the search path in this case
is at most
. What is the value of
that minimizes this expression? What is the expected height of the
skiplist? What is the expected number of nodes in the skiplist?
Exercise 4..3
Design and implement a
method for
SkiplistSSet that avoids
locally-redundant comparisons; these are comparisons that have already
been done and occur because
.
Analyze the expected number of comparisons done by your modified
method.
Exercise 4..4
Design and implement a version of a skiplist that implements the
SSet interface, but also allows fast access to elements by rank.
That is, it also supports the function
, which returns the
element whose rank is
in
expected time. (The rank
of an element
in an
SSet is the number of elements in the
SSet
that are less than
.)
Exercise 4..5
Using the ideas from the space-efficient linked-list,
SEList,
design and implement a space-efficient
SSet,
SESSet. Do this by
storing the data, in order, in an
SEList and then storing the blocks
of this
SEList in an
SSet. If the original
SSet implementation
uses
space to store
elements, then the
SESSet will use
enough space for
elements plus
wasted space.
Exercise 4..6
Using an
SSet as your underlying structure, design and implement an
application that reads a (large) text file and allow you to search,
interactively, for any substring contained in the text.
Hint 1: Every substring is a prefix of some suffix, so it
suffices to store all suffixes of the text file.
Hint 2: Any suffix can be represented compactly as a single
integer indicating where the suffix begins in the text.
Test your application on some large texts like some of the books
available at Project Gutenberg [1].
opendatastructures.org