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

142.环形链表||

时间:2020-04-20 13:25:50      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:ctc   inf   nec   image   修改   span   表示   pre   ast   

题目描述:

给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。

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

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

 

示例 1:

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

技术图片

示例 2:

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

技术图片

示例 3:

输入:head = [1], pos = -1
输出:no cycle
解释:链表中没有环。

技术图片

 

思想:

 

 

 

技术图片

注:z应该为z=n*环的大小+图中的z。所以z应该画n圈再加上一段。

代码:

/**
 * 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) {
        if(head==NULL || head->next==NULL)
            return NULL;
        ListNode* fast=head;
        ListNode* slow=head;
        while(fast->next && fast->next->next){
            fast = fast->next->next;
            slow = slow->next;
            if(slow == fast){
                slow = head;
                while(slow!=fast){
                    slow = slow->next;
                    fast = fast->next;
                }
                return fast;
            }
        }
        return NULL;
    }
};

 

142.环形链表||

标签:ctc   inf   nec   image   修改   span   表示   pre   ast   

原文地址:https://www.cnblogs.com/thefatcat/p/12736938.html

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