leetcode:141.环形链表

leetcode:141.环形链表
给定一个链表,判断链表中是否有环。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。

解析(c++):
快慢指针
时间复杂度:o(n)
空间复杂度:o(1)

class Solution {
public:
    bool hasCycle(ListNode *head) {
        if(!head || !head->next) return nullptr;
        ListNode *fast = head, *slow = head;
        while(fast && fast->next)
        {
            fast = fast -> next -> next;//走两步
            slow = slow -> next;//走一步
            if(fast == slow) return true;
        }
        return false;
    }
};


猜你喜欢

转载自blog.csdn.net/qq_36156649/article/details/107953143