previous |
start |
next
Linked List
- A linked list consists of a number of links, each of which has
a reference to the next link.
- Adding and removing elements in the middle of a linked list is
efficient.
- Visiting the elements of a linked list in sequential order is
efficient
- Random access is not efficient
previous |
start |
next