141. 环形链表

2020-09-09  本文已影响0人  李清依
public class Solution {
    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;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读