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

142. Linked List Cycle II

时间:2019-04-09 16:55:57      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:nod   ext   turn   lis   ace   style   fast   odi   next   

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

Note: Do not modify the linked list.

Follow up:
Can you solve it without using extra space?

//之间做过 有推倒

public class Solution {

    public ListNode detectCycle(ListNode head) {

        ListNode slow = head;

        ListNode fast = head;

        

        while (fast!=null && fast.next!=null){

            fast = fast.next.next;

            slow = slow.next;

                    

            if (fast == slow){

                ListNode slow2 = head; 

                while (slow2 != slow){

                    slow = slow.next;

                    slow2 = slow2.next;

                }

                return slow;

            }

        }

        return null;

    }

}

142. Linked List Cycle II

标签:nod   ext   turn   lis   ace   style   fast   odi   next   

原文地址:https://www.cnblogs.com/MarkLeeBYR/p/10677650.html

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