Write a program to find the node at which the intersection of two singly linked lists begins.
For example, the following two linked lists:
A: a1 → a2 ↘ c1 → c2 → c3 ↗ B: b1 → b2 → b3
begin to intersect at node c1.
Notes:
- If the two linked lists have no intersection at all, return
null
. - The linked lists must retain their original structure after the function returns.
- You may assume there are no cycles anywhere in the entire linked structure.
- Your code should preferably run in O(n) time and use only O(1) memory.
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
//想法一:length1 - length2 = dis;两个指针,长的链表先走dis步,然后一起走,指导遇见相同的节点。
//特殊情况:空链表,链表在头结点相交,链表在尾节点相交
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
if(!headA || !headB) return NULL;
if(headA==headB) return headA;
// 遍历两个链表,得到两个链表的长度
ListNode *pA = headA;
ListNode *pB = headB;
int lengthA=0,lengthB=0;
while(pA){//注意条件判断
lengthA++;
pA = pA->next;
}
while(pB){
lengthB++;
pB = pB->next;
}
ListNode *longlist = (lengthA>=lengthB)?headA:headB;
ListNode *shortlist = (lengthA>=lengthB)?headB:headA;
int dis = abs(lengthA-lengthB);
for(int i=0;i<dis;i++){
longlist = longlist->next;
}
while(longlist){
if(longlist==shortlist) return longlist;
longlist = longlist->next;
shortlist = shortlist->next;
}
return NULL;
}
};