首页 > 其他 > 详细

[Lintcode]102. Linked List Cycle/[Leetcode]141. Linked List Cycle

时间:2019-02-14 17:47:28      阅读:132      评论:0      收藏:0      [点我收藏+]

102. Linked List Cycle/141. Linked List Cycle

  • 本题难度: Medium/Easy
  • Topic: Linked List

Description

A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.

Return a deep copy of the list.

Challenge
Could you solve it with O(1) space?
```

我的代码

"""
Definition of ListNode
class ListNode(object):
    def __init__(self, val, next=None):
        self.val = val
        self.next = next
"""

class Solution:
    """
    @param head: The first node of linked list.
    @return: True if it has a cycle, or false
    """
    def hasCycle(self, head):
        # write your code here
        try:
            slow = head
            fast = head.next
            while(slow is not fast):
                slow = slow.next
                fast = fast.next.next
            return True
        except:
            return False

思路

快慢指针
用try..except

[Lintcode]102. Linked List Cycle/[Leetcode]141. Linked List Cycle

原文:https://www.cnblogs.com/siriusli/p/10375621.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!