Leetcode 141. 环形链表 解题思路及C++实现

解题思路:

定义快慢两个指针,当指针所指节点是同一个时,说明出现了环。

 

/**
 * 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 || !(head->next)) return false;
        ListNode* fast = head;
        ListNode* slow = head;
        while(fast && fast->next){
            slow = slow->next;
            fast = fast->next->next;
            if(slow == fast) return true;
        }
        return false;
    }
};

 

 

上一篇:LeetCode 141. Linked List Cycle--百度面试编程题--C++,Python解法


下一篇:【双指针】141. 环形链表(三种方法:单指针,双指针,集合哈希)