How to find the beginning node of a loop in a given linked list ? Let's call this the cycle point
So far, I've understand the following (using slow/fast pointer):
- Assume list has a non-looped part of size
k - slow moves k steps
- fast moves 2k steps
- fast is (2k - k)=
kstepsaheadof slow - slow is at the beginning of loop; also known as
Cycle point - fast is
(LOOP_LENGTH - k)stepsbehindfromCycle pointor slow pointer at this point - for each 1 step slow moves, fast moves 2 steps and gains on slow by 1 step.
- Thus, it would take fast
(LOOP_LENGTH - k)steps to meet slow and collide - This is the step I don't understand:
At this collision point, both nodes will be
ksteps from the front of the loop. - Once the collision point is found, move one pointer to the head of list.
- Now move both pointers at the speed of 1 step / turn till the collide. The node at which they both meet is the beginning of the the loop and hence the
Cycle point
Can someone please explain me step 9 and after that ?
Thanks
EDIT:
One thing I'd like to point out is, once inside the loop, fast will never overtake slow pointer. They will collide. Here's why: slow is at i and fast is assuming at i-1. when they move, slow=> i+1 and fast will be at i+1 too, hence collision. OR, slow is at i and fast is at i-2. next move, slow-> i+1; fast: i. next move, slow-> i+2, fast: i+2 and hence collision again. so fast will never be able to overtake slow, only collide once inside the loop!