美文网首页
141. Linked List Cycle 环形链表

141. Linked List Cycle 环形链表

作者: 葡萄肉多 | 来源:发表于2019-11-11 15:27 被阅读0次

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

To represent a cycle in the given linked list, we use an integer pos which represents the position (0-indexed) in the linked list where tail connects to. If pos is -1, then there is no cycle in the linked list.

Example 1:

Input: head = [3,2,0,-4], pos = 1
Output: true
Explanation: There is a cycle in the linked list, where tail connects to the second node.

Example 2:

Input: head = [1,2], pos = 0
Output: true
Explanation: There is a cycle in the linked list, where tail connects to the first node.

Example 3:

Input: head = [1], pos = -1
Output: false
Explanation: There is no cycle in the linked list.

题意

判断一个链表是否是循环链表

思路

双指针,一个快一个慢,类似于操场跑步,如果是是环形的,速度不一样的两人最终会相遇。

class Solution:
    def hasCycle(self, head: ListNode) -> bool:
        slow = head
        fast = head

        while fast and fast.next:
            slow = slow.next
            fast = fast.next.next
            if slow == fast:
                return True
        return False

相关文章

网友评论

      本文标题:141. Linked List Cycle 环形链表

      本文链接:https://www.haomeiwen.com/subject/ifutictx.html