Domanda di colloquio di Amazon

Write a function which determines if there is a cycle in a linked-list.

Risposta di colloquio

Anonimo

26 feb 2012

Use two pointers. One pointer moves to the next node, the other one moves to the next node's next node in every iteration. If these two nodes match at some point, then you have a cycle. If you reach to the end of the linked-list without a match, then there is no cycle.