码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 142. 环形链表 II

时间:2020-01-27 10:59:18      阅读:58      评论:0      收藏:0      [点我收藏+]

标签: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;
    }
};

leetcode 142. 环形链表 II

标签:class   标记   额外   node   lin   null   ext   linked   struct   

原文地址:https://www.cnblogs.com/xyqxyq/p/12235506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!