LeetCode 142 Linked List Cycle II

Posted Shendu.cc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 142 Linked List Cycle II相关的知识,希望对你有一定的参考价值。

LeetCode 142

每遍历一个点,都要判断起点到这个点的距离,和启动点到这个点的next的距离。再比较一下就可以了。

class Solution {
public:
    ListNode *detectCycle(ListNode *head) {
        
        ListNode* iter = head;
        
        int dis1=0;
        int dis2;
      
        while(iter!=NULL)
        {
            dis1++;
            iter = iter->next;
            
            ListNode* temp = iter;
            ListNode* iter2 = head;
            dis2=1;
            while(iter2!=NULL&&iter2!=temp)
            {
                dis2++;
                iter2=iter2->next;
            }
            
            if(dis1>=dis2)
                return iter;
        }
        return NULL;  
    }

以上是关于LeetCode 142 Linked List Cycle II的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-142-Linked List Cycle II

LeetCode 141, 142. Linked List Cycle I+II

leetcode-142. Linked List Cycle II

LeetCode142. Linked List Cycle II

[LeetCode] 142. Linked List Cycle II

LeetCode 142 Linked List Cycle II