Version: 5.1
5 Skip Lists
(require data/skip-list) |
Skip lists are a simple, efficient data structure for mutable dictionaries with totally ordered keys. They were described in the paper “Skip Lists: A Probabilistic Alternative to Balanced Trees” by William Pugh in Communications of the ACM, June 1990, 33(6) pp668-676.
A skip-list is an ordered dictionary (dict? and ordered-dict?). It also supports extensions of the dictionary interface for iterator-based search and mutation.
| |||||||||||||||||||||
ord : order? = datum-order | |||||||||||||||||||||
key-contract : contract? = any/c | |||||||||||||||||||||
value-contract : contract? = any/c |
Makes a new empty skip-list. The skip-list uses ord to order
keys; in addition, the domain contract of ord is combined
with key-contract to check keys.
Examples: |
> (define skip-list (make-skip-list real-order)) |
> (skip-list-set! skip-list 3 'apple) |
> (skip-list-set! skip-list 6 'cherry) |
> (dict-map skip-list list) |
'((3 apple) (6 cherry)) |
> (skip-list-ref skip-list 3) |
'apple |
> (skip-list-remove! skip-list 6) |
> (skip-list-count skip-list) |
1 |
| ||||||||
→ adjustable-skip-list? | ||||||||
key-contract : contract? = any/c | ||||||||
value-contract : contract? = any/c |
Makes a new empty skip-list that permits only exact integers as keys
(in addition to any constraints imposed by key-contract). The
resulting skip-list answers true to adjustable-skip-list?
and supports key adjustment.
(skip-list? v) → boolean? |
v : any/c |
Returns #t if v is a skip-list, #f
otherwise.
(adjustable-skip-list? v) → boolean? |
v : any/c |
Returns #t if v is a skip-list that supports key
adjustment; see skip-list-contract! and
skip-list-expand!.
| ||||
| ||||
| ||||
| ||||
| ||||
| ||||
| ||||
|
Implementations of dict-ref, dict-set!,
dict-remove!, dict-count,
dict-iterate-first, dict-iterate-next,
dict-iterate-key, and dict-iterate-value,
respectively.
(skip-list-remove-range! skip-list from to) → void? |
skip-list : skip-list? |
from : any/c |
to : any/c |
Removes all keys in [from, to); that is, all keys
greater than or equal to from and less than to.
(skip-list-contract! skip-list from to) → void? |
skip-list : adjustable-skip-list? |
from : exact-integer? |
to : exact-integer? |
Like skip-list-remove-range!, but also decreases the value
of all keys greater than or equal to to by (- to from).
This operation takes time proportional to the number of elements with keys greater than or equal to to.
(skip-list-expand! skip-list from to) → void? |
skip-list : adjustable-skip-list? |
from : exact-integer? |
to : exact-integer? |
This operation takes time proportional to the number of elements with keys greater than or equal to from.
| ||||||||||||
| ||||||||||||
| ||||||||||||
|
Implementations of dict-iterate-least,
dict-iterate-greatest, dict-iterate-least/>?,
dict-iterate-least/>=?, dict-iterate-greatest/<?,
and dict-iterate-greatest/<=?, respectively.
(skip-list-iter? v) → boolean? |
v : any/c |
Returns #t if v represents a position in a
skip-list, #f otherwise.
(skip-list->list skip-list) → (listof pair?) |
skip-list : skip-list? |
Returns an association list with the keys and values of
skip-list, in order.