首页 > 其他 > 详细

Linked List Cycle II

时间:2015-07-03 00:14:53      阅读:194      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!