a data structure which consists of a set of data structures called nodes which are linked together and organized by links created via references or pointers.
A list that is a singly-linked (only links to one other element) sequence container.
head
The first item in a linked list.
linked data structure
A data structure which consists of a set of data structures called nodes which are linked together and organized by links created via references or pointers.
linked list
A linear collection of data elements whose order is not determined by the placement in memory.
linked list traversal
The process of systematically visiting each node in a linked list.