题解 | #判断链表中是否有环#
判断链表中是否有环
http://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9
取巧做法
题目说val<100000,那就将遍历过的节点设个标记(val=100001),如果遍历过的节点又被遍历,那么就是有环
public class Solution {
public boolean hasCycle(ListNode head) {
if(head==null)
return false;
while(head!=null){
if(head.val==100001)
return true;
head.val = 100001;
head=head.next;
}
return false;
}
}