标签:class 标记 额外 node lin null ext linked struct
这题因为要求不使用额外空间,所以我们直接打标记就阔以了。
/**
* 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;
}
};
标签:class 标记 额外 node lin null ext linked struct
原文地址:https://www.cnblogs.com/xyqxyq/p/12235506.html