LC142. 环形链表 II

2023-12-21 21:32:52

?力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台

public class Solution {
    public ListNode detectCycle(ListNode head) {
        ListNode fast = head;   
        ListNode slow = head;

        while(true){
            if(fast == null || fast.next == null)
                return null;
            fast = fast.next.next;
            slow = slow.next;
            if(fast == slow) break;
        }

        fast = head;

        while(slow != fast){
            slow = slow.next;
            fast = fast.next;
        }
        return fast;
    }
}

文章来源:https://blog.csdn.net/xuan__xia/article/details/135140436
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。