- How are data structures stored? As arrays or linked lists.
- Traversal and access is what its all about.
- Continuous storage, which can be accessed randomly
- Easy access.
- Hard deletion (resize) and expansion.
- Non Contiguous in memory, linked by pointers.
- Easy deletion and expansion.
- Hard access.
- Data structure and logic is what this is all about.