1. 程式人生 > >LeetCode141 連結串列的環

LeetCode141 連結串列的環

https://leetcode.com/problems/linked-list-cycle/

public boolean hasCycle(ListNode head) {
        ListNode fast = head;
        ListNode slow = head;
        while(fast != null && fast.next != null){
            fast = fast.next.next;
            slow = slow.next;
            if(fast == slow) return true;
        }
        return false;
    }