Linked List
Outline
- Introduce Dummy Node in Linked List
- Basic skills in Linked List you shoud know
- Fast Slow Pointers
Dummy Node
Scenario: When the head is not determinated
- Remove Duplicates from Sorted List II
- Reverse Linked List II
- Merge Two Sorted Lists
- Partition List ...
Basic Skills
- Insert a Node in Sorted List
- Remove a Node from Linked List
- Reverse a Linked List
- Merge Two Linked Lists
- Find the Middle of a Linked List
Fast Slow Pointers
- Find the Middle of Linked List
- Remove Nth Node From End of List
- Linked List Cycle I, II ...