Linked List Cycle II

来源:互联网 发布:红旗linux官网 编辑:程序博客网 时间:2024/06/06 14:08

Q:

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

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


Solution:


/** * Definition for singly-linked list. * class ListNode { *     int val; *     ListNode next; *     ListNode(int x) { *         val = x; *         next = null; *     } * } */public class Solution {    public ListNode detectCycle(ListNode head) {        if (head == null || head.next == null)            return null;        ListNode slow = head;        ListNode fast = head;        while (fast.next != null) {            slow = slow.next;            fast = fast.next.next;            if (fast == null)                return null;            if (fast == slow) {                slow = head;                while (slow != fast) {                    slow = slow.next;                    fast = fast.next;                }                return slow;            }        }        return null;    }}


0 0
原创粉丝点击