See also: Programming | Data structure | List
A type of list data structure in which each element has a link to at least the next item in the list, usually via a pointer or reference.
Doubly linked lists have items with pointers to the next item as well as back to the previous item.
Circular linked lists can be either singly or doubly linked lists which have links between the “first” and the “last” items.
TakeDown.NET -> “Linked-List”