RosettaCodeData/Task/Doubly-linked-list-Element-definition/00DESCRIPTION
2016-12-05 22:15:40 +01:00

10 lines
322 B
Text

;Task:
Define the data structure for a [[Linked_List#Doubly-Linked_List|doubly-linked list]] element.
The element should include a data member to hold its value and pointers to both the next element in the list and the previous element in the list.
The pointers should be mutable.
{{Template:See also lists}}
<br><br>