141. 环形链表

  1. 环形链表
image.png

方法一:哈希表

public boolean hasCycle(ListNode head) {
    Set nodesSeen = new HashSet<>();
    while (head != null) {
        if (nodesSeen.contains(head)) {
            return true;
        } else {
            nodesSeen.add(head);
        }
        head = head.next;
    }
    return false;
}

时间复杂度:O(1)
空间复杂度:O(n)

方法二:双指针

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;
}

时间复杂度:O(n) 记得分两种情况考虑:有环和无环
空间复杂度:O(1)


image.png

你可能感兴趣的:(141. 环形链表)