国产探花免费观看_亚洲丰满少妇自慰呻吟_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包詳解

下一篇:幾個小總結

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 青州市| 车致| 嘉祥县| 余干县| 和顺县| 鄂州市| 广元市| 山丹县| 宣武区| 尉氏县| 济阳县| 什邡市| 谷城县| 叙永县| 汕头市| 牟定县| 多伦县| 闸北区| 遂昌县| 双鸭山市| 渝中区| 潼关县| 玉环县| 福建省| 清远市| 海宁市| 两当县| 高淳县| 潮州市| 保山市| 长白| 宿迁市| 宜宾市| 德格县| 汤阴县| 海门市| 秀山| 河源市| 湾仔区| 保靖县| 澳门|