linkpoint1 | 8 years ago | on: What if consciousness is not what drives the human mind?
linkpoint1's comments
linkpoint1 | 8 years ago | on: Linked List Problems (2002) [pdf]
I should have said that the difference between increments must be coprime with n to guarantee that the differece becomes 0 module n, that is both pointers get equal.
linkpoint1 | 8 years ago | on: Linked List Problems (2002) [pdf]
If there is a cycle of length n then eventually both pointers get into the cycle. Since at each step the distance between the two pointers is increased by one module n then the distance becomes zero. Also the time to detect the loop is bounded by the time it takes both pointers to get into the loop plus the cycle length. Also this proof shows that the key ingredient is that the difference between the pointers must be coprime with n but still n steps are required to guarantee that the difference eventually becomes zero. So there is no advantage in choosing other values for the increment of the pointers except to achieve that the slowest get faster into the cycle.