LeetCode 142. 环形链表 II(Java)

  1. 环形链表 II

给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。

说明:不允许修改给定的链表。

示例 1:
输入:head = [3,2,0,-4], pos = 1
输出:tail connects to node index 1
解释:链表中有一个环,其尾部连接到第二个节点。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/linked-list-cycle-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

方法一:Hash表,将链表中每个节点都存到hash表中,如果有重复,则表示有环

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode detectCycle(ListNode head) {
        Set<ListNode> findList=new HashSet<>();
        ListNode findNode=head;
        while(findNode!=null)
        {
            if(findList.contains(findNode))
            {
                return findNode;
            }
            findList.add(findNode);
            findNode=findNode.next;
        }
        return null;
    }
}

方法二:双指针:快慢指针,详解见双指针法

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode detectCycle(ListNode head) {
        ListNode fast=head;
        ListNode slow=head;
        while(true)
        {
            if(fast==null||fast.next==null)
            {
                return null;
            }
            fast=fast.next.next;
            slow=slow.next;
            if(fast==slow)
            {
                break;
            }
        }
        fast=head;
        while(fast!=slow)
        {
            fast=fast.next;
            slow=slow.next;
        }
        return slow;
    }
}
发布了53 篇原创文章 · 获赞 0 · 访问量 1793

猜你喜欢

转载自blog.csdn.net/nuts_and_bolts/article/details/104845172