Linked Lists
Linked lists are useful when paired with hash tables as it allows search/insertion in O(1) time and they can also be used alone to solve problems
Runtime analysis
Corner cases
Techniques
Sentinel/dummy nodes
Two pointers
Using additional linked lists
Linked list modifications
Reversing linked lists
Floyd’s cycle detection

Last updated