标签:nbsp 通过 fast return false turn boolean ret head
给定一个链表,判断链表中是否有环。
可以通过快慢指针,当快指针为NULL时就说明没有环,,当快指针追上慢指针,就说明有环。
public boolean hasCycle(ListNode head) {
if (head == null || head.next == null) {
return false;
}
ListNode slow = head;
ListNode fast = head.next;
while (slow != fast) {
if (fast == null || fast.next == null) {
return false;
}
slow = slow.next;
fast = fast.next.next;
}
return true;
}
标签:nbsp 通过 fast return false turn boolean ret head
原文地址:https://www.cnblogs.com/yihangZhou/p/9905382.html