Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
寻找环的入口节点。
代码:
解题思路:根据环的判断,找到快慢指针的交点,然后slow和p一步一步的走,直到相交。
思路二:先求出环的节点的个数k,然后让p1走k步, 接着p1, p2一起同步走,直到相遇。
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
寻找环的入口节点。
解题思路:根据环的判断,找到快慢指针的交点,然后slow和p一步一步的走,直到相交。
思路二:先求出环的节点的个数k,然后让p1走k步, 接着p1, p2一起同步走,直到相遇。