Linked List Cycle

一次AC

Given a linked list, determine if it has a cycle in it.

Follow up:
Can you solve it without using extra space?


/**
 * 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) 
    {
        ListNode *p, *q;
        if(!head||!head->next)
            return false;
        p = head;
        q = head->next;
        while(q)
        {
            if(p->val!=q->val)
            {
                p = p->next;
                if(!q->next)
                    return false;
                q = q->next->next;
            }
            else
             return true;
        }
        return false;
    }
};


每天早上叫醒你的不是闹钟,而是心中的梦~
原文地址:https://www.cnblogs.com/vintion/p/4116999.html