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

142. Linked List Cycle II

时间:2016-04-20 13:34:07      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

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?

 

Similar: 141. Linked List Cycle

 

 1 /**
 2  * Definition for singly-linked list.
 3  * class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) {
 7  *         val = x;
 8  *         next = null;
 9  *     }
10  * }
11  */
12 public class Solution {
13     public ListNode detectCycle(ListNode head) {
14         ListNode fast = head, slow = head;
15         while (fast != null) {
16             fast = fast.next;
17             if (fast == null) return null;
18             fast = fast.next;
19             slow = slow.next;
20             if (fast == slow) break;
21         } 
22         if (fast == null) return null;
23         slow = head;
24         while (slow != fast) {
25             slow = slow.next;
26             fast = fast.next;
27         }
28         return slow;
29     }
30 }

 

142. Linked List Cycle II

标签:

原文地址:http://www.cnblogs.com/joycelee/p/5412044.html

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