首页 > 每天刷一道牛客题霸-第10天-链表中环的入口节点
头像
菜鸟也要飞的高
编辑于 2020-12-09 19:37
+ 关注

每天刷一道牛客题霸-第10天-链表中环的入口节点

题目

https://www.nowcoder.com/practice/6e630519bf86480296d0f1c868d425ad?tpId=190&&tqId=35178&rp=1&ru=/ta/job-code-high-rd&qru=/ta/job-code-high-rd/question-ranking

package main
import . "nc_tools"
/*
 * type ListNode struct{
 *   Val int
 *   Next *ListNode
 * }
 */

/**
 * 
 * @param head ListNode类 
 * @return ListNode类
*/
func detectCycle( head *ListNode ) *ListNode {

    if head == nil {
        return head
    }
    fast := head
    slow := head

    for fast != nil && slow != nil {
        if fast.Next != nil {
            fast = fast.Next.Next
        }else {
            return nil
        }
        slow = slow.Next
        if slow == fast {
            break
        }
    }
    if fast == nil || slow == nil {
        return nil
    }
    for fast != head {
        fast = fast.Next
        head = head.Next
    }
    return fast
    // write code here
}

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐