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

LeetCode 142 Linked List Cycle II

时间:2018-11-20 15:02:28      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:int   public   cycle   距离   next   linked   null   pre   起点   

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

标签:int   public   cycle   距离   next   linked   null   pre   起点   

原文地址:https://www.cnblogs.com/dacc123/p/9988473.html

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