Step 1/0
Complexity
Best:O(1)
Average:O(n)
Worst:O(n)
Space:O(n)
Description
A sequence of nodes where each node stores a value and a pointer to the next node. Allows efficient insertion and deletion at any point.
When to use
When frequent insertions/deletions are needed and random access is not required. Foundation for stacks, queues, and hash table chaining.