题目:

思路:

用到快慢指针,如果存在环的话,快指针会从后面追上慢指针

代码:

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def hasCycle(self, head: Optional[ListNode]) -> bool:
        slow, fast = head, head
        while fast and fast.next:
            slow = slow.next
            fast = fast.next.next
            if slow == fast:
                return True
        return False
        

Logo

Agent 垂直技术社区,欢迎活跃、内容共建。

更多推荐