VList

VList

In computer science, the VList is a persistent data structure designed by Phil Bagwell in 2002 that combines the fast indexing of arrays with the easy extension of cons-based (or singly-linked) linked lists. [ Citation | title=Fast Functional Lists, Hash-Lists, Deques and Variable Length Arrays | first1=Phil | last1=Bagwell | year=2002 | publisher=EPFL | url=http://citeseer.ist.psu.edu/bagwell02fast.html ]

Like arrays, VLists have constant-time lookup on average and are highly compact, requiring only O(log "n") storage for pointers, allowing them to take advantage of locality of reference. Like singly-linked or cons-based lists, they are persistent, and elements can be added to or removed from the front in constant time. Length can also be found in O(log "n") time.

The primary operations of a VList are:
* Locate the "k"th element (O(1) average, O(log "n") worst-case)
* Add an element to the front of the VList (O(1) average, with an occasional allocation)
* Obtain a new array beginning at the second element of an old array (O(1))
* Compute the length of the list (O(log "n"))

The primary advantages VLists have over arrays are that they are threadsafe and that different updated versions of the VList automatically share structure. Because VLists are immutable, they are most useful in functional programming languages, where their efficiency allows a purely functional implementation of data structures traditionally thought to require mutable arrays, such as hash tables.

However, VLists also have a number of disadvantages over their competitors:
* While immutability is a benefit, it is also a drawback, making it inefficient to modify elements in the middle of the array.
* Access near the end of the list can be as expensive as O(log "n"); it is only constant on average over all elements. This is still, however, much better than performing the same operation on cons-based lists.
* Wasted space in the first block is proportional to "n". This is similar to linked lists, but there are data structures with less overhead. When used as a fully persistent data structure, the overhead may be considerably higher and this data structure may not be appropriate.

Structure

The underlying structure of a VList can be seen as a singly-linked list of arrays whose sizes decrease geometrically; in its simplest form, the first contains the first half of the elements in the list, the next the first half of the remainder, and so on. Each of these blocks stores some information such as its size and a pointer to the next.



"An array-list. The reference shown refers to the VList (0,1,2,3,4,5,6)."

The average constant-time indexing operation comes directly from this structure; given a random valid index, we simply observe the size of the blocks and follow pointers until we reach the one it should be in. The chance is 1/2 that it falls in the first block and we need not follow any pointers; the chance is 1/4 we have to follow only one, and so on, so that the expected number of pointers we have to follow is:

sum_{i=1}^{lceil log_2 n ceil} frac{i-1}{2^i} < sum_{i=1}^{infty} frac{i-1}{2^i} = 1.

Any particular reference to a VList is actually a <"base", "offset"> pair indicating the position of its first element in the data structure described above. The "base" part indicates which of the arrays its first element falls in, while the "offset" part indicates its index in that array. This makes it easy to "remove" an element from the front of the list; we simply increase the offset, or increase the base and set the offset to zero if the offset goes out of range. If a particular reference is the last to leave a block, the block will be garbage-collected if such facilities are available, or otherwise must be freed explicitly.

Because the lists are constructed incrementally, the first array in the array list may not contain twice as many values as the next one, although the rest do; this does not significantly impact indexing performance. We nevertheless allocate this much space for the first array, so that if we add more elements to the front of the list in the future we can simply add them to this list and update the size. If the array fills up, we create a new array, twice as large again as this one, and link it to the old first array.

The trickier case, however, is adding a new item to the front of a list, call it A, which starts somewhere in the middle of the array-list data structure. This is the operation that allows VLists to be persistent. To accomplish this, we create a new array, and we link it to the array containing the first element of A. The new array must also store the offset of the first element of A in that array. Then, we can proceed to add any number of items we like to our new array, and any references into this new array will point to VLists which share a tail of values with the old array. Note that with this operation it is possible to create VLists which degenerate into simple linked lists, thus obliterating the performance claims made at the beginning of this article.

Variants

VList may be modified to support the implementation of a growable array. In the application of a growable array, immutability is no longer required. Instead of growing at the beginning of the list, the ordering interpretation is reversed to allow growing at the end of the array.

ee also

* Purely Functional Data Structures
* [http://www.ootl.org/doc/vlist.html C++ implementation of VLists]

References


Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Vlist — ist Ortsname Vlist (Niederlande), Südholland weiteres Vlist (Fluss). VList (Informatik), bezeichnet eine Datenstruktur in der Informatik. Diese Seite ist eine Begriffsklärung zur Unterscheidung mehrerer mit d …   Deutsch Wikipedia

  • Vlist — Infobox Settlement official name = Vlist flag size = 120x100px image shield = Arms Vlist.jpg shield size = 120x100px mapsize = 280px subdivision type = Country subdivision name = Netherlands subdivision type1 = Province subdivision name1 = South… …   Wikipedia

  • VList — En algorithmique, une VList est une structure de données persistante (conçue par Phil Bagwell en 2002), qui combine l accès rapide aux éléments (comme dans les tableaux) avec la souplesse d extension des listes simplement chaînées. Sommaire 1… …   Wikipédia en Français

  • Vlist — Cette page d’homonymie répertorie les différents sujets et articles partageant un même nom. Vlist, commune néerlandaise, située en Hollande Méridionale, Vlist, hameau de cette commune, Vlist, rivière néerlandaise. En informatique, la structure de …   Wikipédia en Français

  • Vlist — Original name in latin Vlist Name in other language State code NL Continent/City Europe/Amsterdam longitude 51.98 latitude 4.81944 altitude 2 Population 9806 Date 2007 06 03 …   Cities with a population over 1000 database

  • Vlist (riviere) — Vlist (rivière) Pour les articles homonymes, voir Vlist. Vlist Caractéristiques Longueur …   Wikipédia en Français

  • Vlist (Hollande-Meridionale) — Vlist (commune) Pour les articles homonymes, voir Vlist. Vlist …   Wikipédia en Français

  • Vlist (Hollande-Méridionale) — Vlist (commune) Pour les articles homonymes, voir Vlist. Vlist …   Wikipédia en Français

  • Vlist (hollande-méridionale) — Vlist (commune) Pour les articles homonymes, voir Vlist. Vlist …   Wikipédia en Français

  • VList (structure de données) — VList En algorithmique, une VList est une structure de données persistante (conçue par Phil Bagwell en 2002), qui combine l accès rapide aux éléments (comme dans les tableaux) avec la souplesse d extension des listes simplement chaînées. Sommaire …   Wikipédia en Français

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”