您的位置:首页 > 编程语言 > C语言/C++

#leetcode #142 in cpp

2016-06-26 05:46 399 查看
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?

Solution: 

From http://bangbingsyb.blogspot.com/2014/11/leetcode-linked-list-cycle-i-ii.html

Code:

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

}
return slow;
}
}
return NULL;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  cpp leetcode