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

LeetCode——142. Linked List Cycle II

时间:2020-10-12 20:10:56      阅读:22      评论:0      收藏:0      [点我收藏+]

标签:lazy   leetcode   mamicode   amp   tco   ret   lse   image   ==   

题目:

技术图片

技术图片

/**
 * 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) {
        auto slow = head, fast = head;
        auto hasLoop = false;
        if (slow == nullptr) {
            return nullptr;
        }
        while(fast != nullptr && fast->next != nullptr) {
            slow = slow->next;
            fast = fast->next->next;
            if (slow == fast) {
                hasLoop = true;
                break;
            }
        }
        if (hasLoop == false) {
            return nullptr;
        }
        slow = head;
        while(fast != slow) {
            slow = slow->next;
            fast = fast->next;
        }
        return slow;
    }
};

LeetCode——142. Linked List Cycle II

标签:lazy   leetcode   mamicode   amp   tco   ret   lse   image   ==   

原文地址:https://www.cnblogs.com/yejianying/p/LeetCode_142_Linked_List_Cycle_II.html

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