leetcode--Linked List Cycle II

来源:互联网 发布:梅西和c罗谁厉害知乎 编辑:程序博客网 时间:2024/06/15 01:05

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

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

/** * 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(null == head || null == head.next) return null;        ListNode slow = head;        ListNode fast = head;        while(slow != null && fast != null && fast.next != null){            slow = slow.next;            fast = fast.next.next;            if(slow == fast){                slow = head;                while(slow != fast){                    slow = slow.next;                    fast = fast.next;                }                return slow;            }        }        return null;    }}

0 0
原创粉丝点击