【leetcode】142. 环形链表 II (medium)

给定一个链表的头节点 head ,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。

如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。如果 pos 是 -1,则在该链表中没有环。注意:pos 不作为参数进行传递,仅仅是为了标识链表的实际情况。

不允许修改 链表。

方法一:遍历链表,将遍历过的节点加入HashSet,如果当前节点的下一个节点cur.next在HashSet中,说明有环,返回cur.next;如果遍历到cur.next == null,说明链表无环,返回null.

该方法中定义了HashSet,那么空间复杂度为O(n).

public class Solution {
    public ListNode detectCycle(ListNode head) {
        if(head == null || head.next == null) return null;
        HashSet<ListNode> visited = new HashSet<>(); 
        ListNode cur = head;
        int count = 0;
        while(cur.next != null){ 
            visited.add(cur);
            if(visited.contains(cur.next)) 
                return cur.next;
            cur = cur.next;
        }
        return null;
    }
}

方法二:快慢指针
思路详见代码随想录
慢指针一次走一步,快指针一次走两步,它们会在环内相遇。
从一指针从相遇点出发,另一指针从头节点出发,它们将在环入口相遇。

public class Solution {
    public ListNode detectCycle(ListNode head) {
        if(head == null || head.next == null) return null;
        ListNode slow = head;
        ListNode fast = head;
        while(fast!=null && fast.next!=null){// 奇偶长度
            slow = slow.next;
            fast = fast.next.next;
            if(slow == fast){ // 相遇
                ListNode index1 = slow;
                ListNode index2 = head;
                while(index1 != index2){
                    index1 = index1.next;
                    index2 = index2.next;
                }
                return index1;
            }
        }
        return null;
    }
}

你可能感兴趣的:(java,工作,leetcode,链表,算法)