Last active
August 29, 2015 14:02
-
-
Save gabhi/60473b491d346dedb2a7 to your computer and use it in GitHub Desktop.
Detect cycle in linked list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static boolean detectCycle(ListNode head) { | |
ListNode p1 = head; | |
ListNode p2 = head; | |
while (p2 != null && p2.next != null) { | |
p1 = p1.next; | |
p2 = p2.next.next; | |
if (p1 == p2) | |
return true; | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment