链表中环的入口节点

对于一个给定的链表,返回环的入口节点,如果没有环,返回null
拓展:
你能给出不利用额外空间的解法么?

/*
 * function ListNode(x){
 *   this.val = x;
 *   this.next = null;
 * }
 */

/**
 * 
 * @param head ListNode类 
 * @return ListNode类
 */
function detectCycle( head ) {
    // write code here
    if(head==null||head.next==null){return null}
    var slow = head
    var fast = head
    while(fast&&fast.next){
        slow = slow.next
        fast = fast.next.next
        if(fast==slow){
           let p = head
           while(p!==slow){
               p = p.next
               slow = slow.next
           }
            return p
        }
    }
    return null
}
module.exports = {
    detectCycle : detectCycle
};
链表算法 文章被收录于专栏

链表相关算法

全部评论

相关推荐

Java抽象带篮子:难蚌,点进图片上面就是我的大头😆
点赞 评论 收藏
分享
oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务