Linked List

Access is O(n)\mathcal{O}(n).

While insertion and deletion at known positions are O(1)\mathcal{O}(1), those at arbitrary positions are O(n)\mathcal{O}(n) due to traversal.

Types: Singly Linked List, Doubly Linked List, Circular Linked List