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

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

Leetcode 142. Linked List Cycle II

2019-11-11 05:54:47
字體:
來源:轉載
供稿:網友

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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阳朔县| 隆安县| 平遥县| 故城县| 同心县| 麻栗坡县| 堆龙德庆县| 海丰县| 平凉市| 武夷山市| 夹江县| 寿光市| 鹿邑县| 米泉市| 海盐县| 延安市| 海安县| 新平| 屯留县| 确山县| 江油市| 甘谷县| 南涧| 神木县| 宜州市| 清新县| 英吉沙县| 景东| 榆林市| 巧家县| 洪湖市| 孙吴县| 桦川县| 新和县| 大田县| 富顺县| 临颍县| 临颍县| 阳新县| 泰来县| 浑源县|