日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

[LeetCode] Linked List Cycle II

發(fā)布時(shí)間:2025/4/9 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 [LeetCode] Linked List Cycle II 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

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?

解題思路

設(shè)鏈表長(zhǎng)度為n,頭結(jié)點(diǎn)與循環(huán)節(jié)點(diǎn)之間的長(zhǎng)度為k。定義兩個(gè)指針slow和fast,slow每次走一步,fast每次走兩步。當(dāng)兩個(gè)指針相遇時(shí),有:

  • fast = slow * 2
  • fast - slow = (n - k)的倍數(shù)
    由上述兩個(gè)式子能夠得到slow為(n-k)的倍數(shù)

兩個(gè)指針相遇后,slow指針回到頭結(jié)點(diǎn)的位置,fast指針保持在相遇的節(jié)點(diǎn)。此時(shí)它們距離循環(huán)節(jié)點(diǎn)的距離都為k,然后以步長(zhǎng)為1遍歷鏈表,再次相遇點(diǎn)即為循環(huán)節(jié)點(diǎn)的位置。

實(shí)現(xiàn)代碼

/*** Definition for singly-linked list.* struct ListNode {* int val;* ListNode *next;* ListNode(int x) : val(x), next(NULL) {}* };*///Runtime:16 ms class Solution { public:ListNode *detectCycle(ListNode *head) {if (head == NULL){return NULL;}ListNode *slow = head;ListNode *fast = head;while (fast->next && fast->next->next){slow = slow->next;fast = fast->next->next;if (fast == slow){break;}}if (fast->next && fast->next->next){slow = head;while (slow != fast){slow = slow->next;fast = fast->next;}return slow;}return NULL;} };

轉(zhuǎn)載于:https://www.cnblogs.com/blfbuaa/p/7049933.html

總結(jié)

以上是生活随笔為你收集整理的[LeetCode] Linked List Cycle II的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。