leetcode 142. 环形链表 II
Posted XYQ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 142. 环形链表 II相关的知识,希望对你有一定的参考价值。
这题因为要求不使用额外空间,所以我们直接打标记就阔以了。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
const int INF=0x3f3f3f3f;
class Solution {
public:
ListNode *detectCycle(ListNode *head) {
while (head) {
if (head->val==INF) {
return head;
}
head->val=INF;
head=head->next;
}
return NULL;
}
};
以上是关于leetcode 142. 环形链表 II的主要内容,如果未能解决你的问题,请参考以下文章