题解 | python 断链法求环起始位置
链表中环的入口结点
http://www.nowcoder.com/practice/253d2c59ec3e4bc68da16833f79a38e4
空间复杂度o(1),时间复杂度o(n)
从head开始,每经过一个节点便截断,过河拆桥拆到最后就是环的起点了
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # self.val = x # self.next = None class Solution: def EntryNodeOfLoop(self, pHead): # write code here a = ListNode('') while pHead: if pHead.next == a: return pHead tmp = pHead.next pHead.next = a pHead = tmp