LeetCode141——环形链表(python)

Posted 归止于飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode141——环形链表(python)相关的知识,希望对你有一定的参考价值。

给你一个链表的头节点 head ,判断链表中是否有环。

如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。如果 pos 是 -1,则在该链表中没有环。注意:pos 不作为参数进行传递,仅仅是为了标识链表的实际情况。

如果链表中存在环,则返回 true 。 否则,返回 false 。

思路:利用双指针法,即快慢指针,若两指针相碰,即为环形链表。
代码:

class Solution:
    def hasCycle(self, head: ListNode) -> bool:
        if head == None or head.next == None:
            return False
        h1,h2 = head,head
        while h2 and h2.next:
            h1 = h1.next
            h2 = h2.next.next
            if h1 == h2:
                return True
        return False

以上是关于LeetCode141——环形链表(python)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode141——环形链表(python)

LeetCode141——环形链表(python)

Leecode刷题之旅-C语言/python-141环形链表

LeetCode刷题141-简单-环形链表

LeetCode刷题141-简单-环形链表

LeetCode 141 环形链表