Linked List Cycle II

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

Follow up:
Can you solve it without using extra space?

找出单链表中的环的起点,最初用的标记的办法,但是不符合题意,最后参阅了网上资料,深感自己智商不足啊

class Solution {
public:
    ListNode * getMeetPlace(ListNode *head){
         if(head==NULL) return NULL;
         ListNode * fast = head, * slow = head;
         do{
            if(fast==NULL || fast->next==NULL) return NULL;
            fast = fast->next->next;
            slow = slow->next;
         }while(fast!=slow);
         return fast;
    }
    ListNode *detectCycle(ListNode *head) {
        ListNode * p1 = getMeetPlace(head);
        if(p1==NULL) return NULL;
        ListNode * p2 = head;
        while(p1!=p2){
            p1 = p1->next;
            p2 = p2->next;
        }
        return p1;
    }
};

原理很简单,设 慢指针到达环起点路程为x,两指针相遇后慢指针走过路程为y  ,环的长度为r,链表总长度为L

则:

 x + y = 2(x+y) + nr 

x + y = nr  =(n-1)r + L -x

x = (n-1)r + L - x - y

L-x-y 为环相遇点离环入口长度

那么在相遇点和链表起点各设指针向后移动,则他们会在环入口处相遇


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值