Leetcode 142. Linked List Cycle II

龟兔赛跑算法

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

class Solution(object):
    def detectCycle(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        try:
            slow = head
            fast = head.next
            while slow is not fast:
                slow = slow.next
                fast = fast.next.next
            slow=head.next
            while slow is not fast:
                slow=slow.next
                fast=fast.next
            return slow
            
        except:
            return

 

posted @ 2019-04-17 22:57  周洋  阅读(143)  评论(0编辑  收藏  举报