LintCode103 - 链表是否为环

LintCode103 - 链表是否为环

学而不思则罔,思而不学则殆

题目

描述
给定一个链表,如果链表中存在环,则返回到链表中环的起始节点,如果没有环,返回null。

样例
样例 1:

输入:null,no cycle
输出:no cycle
解释:
链表为空,所以没有环存在。
样例 2:

输入:-21->10->4->5,tail connects to node index 1
输出:10
解释:
最后一个节点5指向下标为1的节点,也就是10,所以环的入口为10

解析

这道算法题需要用到双指针法
在这里插入图片描述

  1. 假设存在环,那么a点入环点
  2. 采用双指针法,快指针每次走两步,慢指针每次走一步
  3. 当慢指针走到a点的时候,快指针早已经入环走了n圈了
  4. 此时一定会在b点相遇,且慢指针走的环内距离y小于环长R
  5. 假设链表头部到a的距离为x,a到b的距离为y,环长为R
  6. 快指针的距离是慢指针的距离的两倍

则存在如下公式:
2 ∗ ( x + y ) = x + y + n ∗ R 2*(x+y) = x+y+n*R 2(x+y)=x+y+nR
x = n ∗ R − y x= n*R -y x=nRy
因此从头结点到入环口的距离等于n倍环长减去y的距离,所以设置两个指针,一个指向head,一个指向相遇点,然后同步移动,相遇点即为入环点

代码

    public static ListNode detectCycle(ListNode head) {
        // write your code here

        if (head == null || head.next == null) {
            return null;
        }
        ListNode singleNode = head;
        ListNode doubleNode = head.next;

        while (singleNode != doubleNode) {
            singleNode = singleNode.next;
            if (doubleNode.next != null && doubleNode.next.next != null) {
                doubleNode = doubleNode.next.next;
            } else {
                return null;
            }
        }
        System.out.println(singleNode.val + " - " + doubleNode.val);

        ListNode singleNode1 = head;
        ListNode singleNode2 = singleNode.next;
        while (singleNode1 != singleNode2) {
            singleNode1 = singleNode1.next;
            singleNode2 = singleNode2.next;
        }
        System.out.println(singleNode1.val + " - " + singleNode2.val);

        return singleNode1;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值