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

LeetCode Linked List Cycle

时间:2014-06-25 21:00:45      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   ext   color   

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    bool hasCycle(ListNode *head) {
        if (head == NULL) return false;
        ListNode* fast = head;
        ListNode* slow = head;
        while (step(fast, 2) && step(slow, 1)) {
            if (fast == slow) break;
        }
        return fast != NULL;
    }
    
    bool step(ListNode* &node, int n) {
        while (node != NULL && n > 0) {
            node = node->next;
            n--;
        }
        return n == 0;
    }
};

水一发

LeetCode Linked List Cycle,布布扣,bubuko.com

LeetCode Linked List Cycle

标签:style   class   blog   code   ext   color   

原文地址:http://www.cnblogs.com/lailailai/p/3805549.html

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