码迷,mamicode.com
首页 > 其他好文 > 详细

Linked List Cycle II

时间:2015-07-03 00:15:03      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

题目来自:https://leetcode.com/problems/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?

代码

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *detectCycle(ListNode *head) {
        ListNode* slow = head;
        ListNode* fast = head;
        while (fast && fast->next){
            fast = fast->next->next;
            slow = slow->next;
            if (slow == fast){
                slow = head;
                while (slow != fast){
                    slow = slow->next;
                    fast = fast->next;
                }
                return slow;
            }
        }
        return nullptr;
    }
};

解释:

假设
技术分享
我们假设环的开始地方是x而环的长度为y。快指针和慢指针相遇在离远点为t的地方
那么有:

x+n?y+(t?x)=2?t

所以有
t=ny

所以当我们满指针的位置是环中t?x的位置
所以t?x+x=t=ny
所以快指针刚好走到环开始的地方

版权声明:本文为博主原创文章,未经博主允许不得转载。

Linked List Cycle II

标签:

原文地址:http://blog.csdn.net/zhouyelihua/article/details/46733327

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!