美文网首页
链表中环的入口节点

链表中环的入口节点

作者: 而立之年的技术控 | 来源:发表于2019-12-22 19:36 被阅读0次
    微信图片_20191222194317.jpg
    class Solution:
        def EntryNodeOfLoop(self, pHead):
            # write code here
            if pHead is None or pHead.next is None:
                return None
            fast = pHead
            slow = pHead
            while fast and fast.next:
                fast = fast.next.next
                slow = slow.next
                if fast == slow:
                    break
            fast = pHead
            while fast != slow:
                fast = fast.next
                slow = slow.next
            return fast
    

    相关文章

      网友评论

          本文标题:链表中环的入口节点

          本文链接:https://www.haomeiwen.com/subject/npaonctx.html