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

LeetCode 141, 142. Linked List Cycle I+II

时间:2018-06-02 19:03:30      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:a+b   ret   link   code   ctc   起点   lse   pre   color   

判断链表有没有环,用Floyd Cycle Detection算法,用两个快慢指针。

class Solution {
public:
    bool hasCycle(ListNode *head) {
        if (!head) return false;
        ListNode *slow, *fast;
        slow=fast=head;
        do{
            if (fast==NULL || fast->next==NULL) return false;
            slow = slow->next;
            fast = fast->next->next;
        }while(slow!=fast);
        return true;
    }
};

 

142是141的进阶,需要额外判断环的起点。

详见 https://leetcode.com/problems/linked-list-cycle-ii/solution/ 中的推导,不过里面应该是 F=(n-1)(a+b)+b,因此从head和相遇点开始同时走,一定会在循环起点相遇。

class Solution {
public:
    ListNode *detectCycle(ListNode *head) {
        if (!head) return NULL;
        ListNode *slow, *fast;
        slow = fast = head;
        do{
            if (!fast || !fast->next) return NULL;
            slow = slow->next;
            fast = fast->next->next;
        }while(slow!=fast);
        
        ListNode *p=head, *q=slow;
        while(p!=q){
            p = p->next;
            q = q->next;
        };
        return p;    
    }
};

 

LeetCode 141, 142. Linked List Cycle I+II

标签:a+b   ret   link   code   ctc   起点   lse   pre   color   

原文地址:https://www.cnblogs.com/hankunyan/p/9126249.html

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