题目链接
https://www.lintcode.com/problem/intersection-of-two-linked-lists/description
请写一个程序,找到两个单链表最开始的交叉节点。
Example
样例 1:
输入:
A: a1 → a2
↘
c1 → c2 → c3
↗
B: b1 → b2 → b3
输出:c1
解释:在节点 c1 开始交叉。
样例 2:
输入:
Intersected at 6
1->2->3->4->5->6->7->8->9->10->11->12->13->null
6->7->8->9->10->11->12->13->null
输出: Intersected at 6
解释:begin to intersect at node 6.
Challenge
需满足 O(n) 时间复杂度,且仅用 O(1) 内存。
Notice
- 如果两个链表没有交叉,返回
null
。 - 在返回结果后,两个链表仍须保持原有的结构。
- 可假定整个链表结构中没有循环。
思路:
1、分别计算两个链表headA、headB的长度len1和len2(假设len1>len2)
2、先对链表headA遍历(len1-len2)个结点到结点p,此时结点p与headB到它们相交的结点的距离相等
3、此时同时遍历两个链表,直到遇到相同的结点为止,这个结点就是它们相交的结点。