[LeetCode] - Linked List Cycle II

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?

这又是个经典的题目,具体实现的步骤如下:

1):定义两个指针S,F分别对应每次走一步,两步指针。就是快慢指针。初始都指向头结点。

2):当有环时,S==F。将其中一个指向(比如S)head,同时S和F相同的速度向后移动,当S==F时停止。

3):S==F就是环的起始结点。


关于这个算法的解释,我看的是http://fisherlei.blogspot.com/2013/11/leetcode-linked-list-cycle-ii-solution.html。有图有分析,写的很好。这真是我头一次看懂了这个题目的分析,以前总是只知其然,不知其所以然。


这里还有一个小问题,就是如果我把fast初始化为head.next的话,leetcode是过不了的。但是在Linked List Cycle I里面,无论将fast初始化为head还是head.next都是可以通过的。我觉得这里其实是无所谓的,我不知道是leetcode的bug还是我有啥地方没有考虑到。望有高人指点Orz...


代码如下:

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值