Self-referential data structure

From Computer Science Wiki
Revision as of 14:28, 9 March 2020 by Mr. MacKenty (talk | contribs)
Programming[1]

A self-referential structure is one of the data structures which refer to the pointer to (points) to another structure of the same type. For example, a linked list is supposed to be a self-referential data structure. The next node of a node is being pointed, which is of the same struct type. [2]


Within the context of blockchain, each block is linked to a previous or next node, much like a linked list.

References[edit]