RosettaCodeData/Task/Singly-linked-list-Element-definition/00DESCRIPTION

4 lines
223 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
Define the data structure for a [[singly-linked list]] element. Said element should contain a data member capable of holding a numeric value, and the link to the next element should be mutable.
2013-10-27 22:24:23 +00:00
{{Template:See also lists}}