环形链表()
摘要:
法一: class Solution: def hasCycle(self, head: ListNode) -> bool: a = set() while head: if head in a: return True a.add(head) head = head.next return Fa 阅读全文
posted @ 2020-08-19 16:22 不要挡着我晒太阳 阅读(96) 评论(0) 推荐(0) 编辑
posted @ 2020-08-19 16:22 不要挡着我晒太阳 阅读(96) 评论(0) 推荐(0) 编辑
posted @ 2020-08-19 11:28 不要挡着我晒太阳 阅读(109) 评论(0) 推荐(0) 编辑