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

linked-list-cycle-ii

时间:2019-05-10 14:33:18      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:http   where   lin   ini   ace   for   www.   nod   using   

原文地址:https://www.jianshu.com/p/21009b10c42d

时间限制:1秒 空间限制:32768K

题目描述

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

运行时间:18ms
占用内存:1224k

linked-list-cycle-ii

标签:http   where   lin   ini   ace   for   www.   nod   using   

原文地址:https://www.cnblogs.com/cherrychenlee/p/10844085.html

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