python3判断单链表中是否有环

给定一个链表,判断链表中是否有环。

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

 

示例 1:

输入:head = [3,2,0,-4], pos = 1
输出:true
解释:链表中有一个环,其尾部连接到第二个节点。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/linked-list-cycle

解题思路:快慢双指针

 1 # Definition for singly-linked list.
 2 # class ListNode(object):
 3 #     def __init__(self, x):
 4 #         self.val = x
 5 #         self.next = None
 6 
 7 class Solution(object):
 8     def hasCycle(self, head):
 9         """
10         :type head: ListNode
11         :rtype: bool
12         """
13         if not head:
14             return head      
15         slow = head
16         fast = head
17         while slow and fast:
18             slow = slow.next
19             if fast.next:
20                 fast=fast.next.next
21             else:
22                 return False
23             if slow == fast:
24                 return True
25         return False

 

posted @ 2020-08-06 11:09  菠菜猫  阅读(1368)  评论(0编辑  收藏  举报