Parent pointer tree (nonfiction): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
The structure can be regarded as a set of singly linked lists that share part of their structure, in particular, their tails. From any node, one can traverse to ancestors of the node, but not to any other node. | The structure can be regarded as a set of singly linked lists that share part of their structure, in particular, their tails. From any node, one can traverse to ancestors of the node, but not to any other node. | ||
== | == In the News == | ||
<gallery> | |||
</gallery> | |||
== Fiction cross-reference == | |||
* [[Gnomon algorithm]] | |||
* [[Gnomon Chronicles]] | |||
* [[Parent Pointer Tree]] | * [[Parent Pointer Tree]] | ||
== Nonfiction cross-reference == | |||
* [[Computer science (nonfiction)]] | |||
== External links == | |||
* [https://en.wikipedia.org/wiki/Parent_pointer_tree Parent pointer tree] @ Wikipedia | * [https://en.wikipedia.org/wiki/Parent_pointer_tree Parent pointer tree] @ Wikipedia | ||
[[Category:Nonfiction (nonfiction)]] | |||
[[Category:Computer science (nonfiction)]] |
Latest revision as of 09:41, 23 November 2020
In computer science, an in-tree or parent pointer tree is an N-ary tree data structure in which each node has a pointer to its parent node, but no pointers to child nodes. When used to implement a set of stacks, the structure is called a spaghetti stack, cactus stack or saguaro stack (after the saguaro, a kind of cactus). Parent pointer trees are also used as disjoint-set data structures.
The structure can be regarded as a set of singly linked lists that share part of their structure, in particular, their tails. From any node, one can traverse to ancestors of the node, but not to any other node.
In the News
Fiction cross-reference
Nonfiction cross-reference
External links
- Parent pointer tree @ Wikipedia