<<< Linked Lists | Index | Linked List Design Models >>> |
A linked list can grow and shrink while the program is running.
The program controls how linked list is built and managed.
Linked list permits insertion and removal of nodes at any point in the list.
As a result, the logical order of the linked nodes may be different from the order of objects in memory.
<<< Linked Lists | Index | Linked List Design Models >>> |