Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Unrolled linked list
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Computer programming data structure}} {{One source|date=March 2021}} [[File:Unrolled linked lists (1-8).PNG|thumb|180px|In this model, the maximum number of elements is 4 for each node.]] In computer programming, an '''unrolled linked list''' is a variation on the [[linked list]] which stores multiple elements in each node. It can dramatically increase [[CPU cache|cache]] performance, while decreasing the memory overhead associated with storing list metadata such as [[reference]]s. It is related to the [[B-tree]]. ==Overview== A typical unrolled linked list node looks like this: '''[[record (computer science)|record]]''' node { ''node'' next ''// reference to next node in list'' ''int'' numElements ''// number of elements in this node, up to maxElements'' ''array'' elements ''// an array of numElements elements,'' ''// with space allocated for maxElements elements'' } Each node holds up to a certain maximum number of elements, typically just large enough so that the node fills a single [[cache line]] or a small multiple thereof. A position in the list is indicated by both a reference to the node and a position in the elements array. It is also possible to include a ''previous'' pointer for an unrolled [[doubly linked list]]. To insert a new element, we find the node the element should be in and insert the element into the <code>elements</code> array, incrementing <code>numElements</code>. If the array is already full, we first insert a new node either preceding or following the current one and move half of the elements in the current node into it. To remove an element, we find the node it is in and delete it from the <code>elements</code> array, decrementing <code>numElements</code>. If this reduces the node to less than half-full, then we move elements from the next node to fill it back up above half. If this leaves the next node less than half full, then we move all its remaining elements into the current node, then bypass and delete it. ==Performance== One of the primary benefits of unrolled linked lists is decreased storage requirements. All nodes (except at most one) are at least half-full. If many random inserts and deletes are done, the average node will be about three-quarters full, and if inserts and deletes are only done at the beginning and end, almost all nodes will be full. Assume that: * ''m'' = <code>maxElements</code>, the maximum number of elements in each <code>elements</code> array; * ''v'' = the overhead per node for references and element counts; * ''s'' = the size of a single element. Then, the space used for ''n'' elements varies between <math>(v/m + s)n</math> and <math>(2v/m + s)n</math>. For comparison, ordinary linked lists require <math>(v + s)n</math> space, although ''v'' may be smaller, and [[array data structure|array]]s, one of the most compact data structures, require <math>sn</math> space. Unrolled linked lists effectively spread the overhead ''v'' over a number of elements of the list. Thus, we see the most significant space gain when overhead is large, <code>maxElements</code> is large, or elements are small. If the elements are particularly small, such as bits, the overhead can be as much as 64 times larger than the data on many machines. Moreover, many popular memory allocators will keep a small amount of metadata for each node allocated, increasing the effective overhead ''v''. Both of these make unrolled linked lists more attractive. Because unrolled linked list nodes each store a count next to the ''next'' field, retrieving the ''k''th element of an unrolled linked list (indexing) can be done in ''n''/''m'' + 1 cache misses, up to a factor of ''m'' better than ordinary linked lists. Additionally, if the size of each element is small compared to the cache line size, the list can be traversed in order with fewer cache misses than ordinary linked lists. In either case, operation time still increases linearly with the size of the list. == See also == * [[CDR coding]] * [[Skip list]] * [[T-tree]] * [[XOR linked list]] * [[Hashed array tree]] ==References== {{reflist|30em}} * {{Citation | last1 = Shao | first1 = Z. | last2 = Reppy | first2 = J. H. | last3 = Appel | first3 = A. W. | title = Proceedings of the 1994 ACM conference on LISP and functional programming - LFP '94 | chapter = Unrolling lists | date = 1994 | pages = [https://archive.org/details/proceedingsof19900acmc/page/185 185β191] | url = https://archive.org/details/proceedingsof19900acmc/page/185 | doi = 10.1145/182409.182453 | isbn = 978-0897916431 | s2cid = 3192876 | url-access = registration | doi-access = free }} == External links == * [https://github.com/badgerman/quicklist Implementation written in C] * [https://github.com/megatherion/Unrolled-linked-list Another implementation written in Java] * [https://github.com/hIMEI29A/goulist Implementation written in Golang] * [http://opendatastructures.org/ods-java/3_3_SEList_Space_Efficient_.html Open Data Structures—Section 3.3—SEList: A Space-Efficient Linked List], [[Pat Morin]] {{Data structures}} [[Category:Linked lists]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Citation
(
edit
)
Template:Data structures
(
edit
)
Template:One source
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)