LeetCode - The Two Pointers Part
There are two types of two pointers.
- for only one items
If we only care about the start and the end in an array, we can use two pointers.
If we need to find kth node from the end, we can use two pointers.
- both from start but for different items
-
Like indexOf in String Implement strStr()
Another type is for insert index, when we want to remove some element in array in place, we can use an insert index to indicate the insert position and another pointer to do the iteration.