求链表环的起始位置

leetcode中题目位置

https://leetcode.cn/problems/linked-list-cycle-ii/submissions/?envType=study-plan-v2&envId=top-100-liked

代码:

java 复制代码
public class Solution {
    public ListNode detectCycle(ListNode head) {
        if (head == null || head.next == null) {
            return null;
        }
        // a + b = slow = cnt;
        // a + b + (b + c)x = fast = 2 * slow = 2cnt ----> bx+cx = cnt
        // a = b(x-1) + cx = (b + c)(x - 1) + c, 即从 相遇节点、root节点出发,经过(a+1)节点后,他们会在头结点相遇;
        ListNode slow = head;
        ListNode fast = head.next;
        while (slow != fast) {
            if (fast.next == null || fast.next.next == null) {
                return null;
            }
            slow = slow.next;
            fast = fast.next.next;
        }
        slow = slow.next;
        while (head != slow) {
            head = head.next;
            slow = slow.next;
        }
        return head;
    }
}

重点:快慢指针相遇后,慢指针继续往前,同时root也开始往前(root.next = head), 他们必然会相遇,即a = (b + c)(x - 1) + c

* a+1是root到环起点的步数;

* c+1是慢指针从相遇节点 到 环起点的步数;

* b+c是环的节点数

相关推荐
Adios7942 小时前
设置交集大小至少为2
数据结构·算法·leetcode
来一碗刘肉面8 小时前
栈的应用(表达式求值)
数据结构·算法
yuannl1011 小时前
图的深度优先遍历DFS
数据结构
青山木14 小时前
Hot 100 --- 岛屿数量
java·数据结构·算法·leetcode·深度优先·广度优先
不会就选b14 小时前
算法日常・每日刷题--<归并排序>1
数据结构·算法
危桥带雨14 小时前
排序算法(快排、归并、计数、基数排序)
数据结构·算法·排序算法
zephyr0515 小时前
数据结构-并查集
数据结构
稚南城才子,乌衣巷风流16 小时前
动态树(Dynamic Tree)数据结构详解
数据结构·算法
zander25816 小时前
114. 二叉树展开为链表
数据结构·链表·深度优先
小肝一下17 小时前
3. 单链表
c语言·数据结构·c++·算法·leetcode·链表·dijkstra