码迷,mamicode.com
首页 > 其他好文 > 详细

环形链表判断

时间:2020-06-25 09:26:14      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:elf   指针   else   fas   空间复杂度   slow   lis   als   asc   

方法一:

哈希表

时间复杂度:O(n)

空间复杂度:O(n)

class Solution:
    def hasCycle(self, head: ListNode) -> bool:
        dict = {}
        while head:
            if head in dict:
                return True
            else:
                dict.setdefault(head,1)
                head = head.next
        return False

方法二:

快慢指针

时间复杂度:O(n)

空间复杂度:O(1)

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

环形链表判断

标签:elf   指针   else   fas   空间复杂度   slow   lis   als   asc   

原文地址:https://www.cnblogs.com/gugu-da/p/13190976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!