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

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

Leetcode 142. Linked List Cycle II

2019-11-11 06:32:23
字體:
來源:轉載
供稿:網友

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; }};
上一篇:Spring4 Jar包詳解

下一篇:幾個小總結

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 武山县| 东丰县| 永平县| 雷山县| 静安区| 滨海县| 繁峙县| 阿城市| 申扎县| 东台市| 松阳县| 科尔| 辽源市| 珠海市| 建始县| 莒南县| 沅陵县| 汨罗市| 河南省| 临颍县| 象山县| 江永县| 栖霞市| 大渡口区| 巫溪县| 南京市| 米林县| 莱州市| 吐鲁番市| 电白县| 宁南县| 康平县| 阜新市| 定安县| 西乌| 游戏| 红河县| 宁城县| 靖江市| 准格尔旗| 湛江市|