国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

Leetcode 142. Linked List Cycle II

2019-11-11 07:05:48
字體:
來源:轉載
供稿:網友

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

Note: Do not modify the linked list.

Follow up: Can you solve it without using extra space?

s思路: 1. 如何用快慢指針大法檢測cycle,在Leetcode 141. Linked List Cycle以及說清楚了。不說了,直接來!

//方法1:快慢指針移動大法!class Solution {public: ListNode *detectCycle(ListNode *head) { // if(!head) return NULL; ListNode* fast=head->next,*slow=head; while(fast&&fast!=slow){ fast=fast->next?fast->next->next:NULL; slow=slow->next; } if(fast==NULL) return NULL; fast=head; slow=slow->next;//這里有一個bug:把fast放在頭部,那么slow需要往下移動一位,才開始同步移動! while(fast!=slow){ fast=fast->next; slow=slow->next; } return fast; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 利川市| 宜川县| 九江县| 桐乡市| 滁州市| 军事| 华亭县| 蓝山县| 蒲江县| 大连市| 景东| 定兴县| 太仆寺旗| 荥经县| 渝中区| 新龙县| 红安县| 无锡市| 江油市| 新巴尔虎右旗| 台北县| 湘潭县| 宜春市| 剑川县| 西贡区| 同心县| 新兴县| 蒙自县| 彩票| 太仆寺旗| 连城县| 黎城县| 迁西县| 云安县| 平乡县| 大余县| 云梦县| 新乡市| 井研县| 韩城市| 桂林市|