我的LeetCode代码仓:https://github.com/617076674/LeetCode
原题链接:https://leetcode-cn.com/problems/intersection-of-two-linked-lists/description/
题目描述:
文章图片
输入:intersectVal = 8, listA = [4,1,8,4,5], listB = [5,0,1,8,4,5], skipA = 2, skipB = 3
输出:Reference of the node with value = https://www.it610.com/article/8
输入解释:相交节点的值为 8 (注意,如果两个列表相交则不能为 0)。从各自的表头开始算起,链表 A 为 [4,1,8,4,5],链表 B 为 [5,0,1,8,4,5]。在 A 中,相交节点前有 2 个节点;在 B 中,相交节点前有 3 个节点。
文章图片
输入:intersectVal = 2, listA = [0,9,1,2,4], listB = [3,2,4], skipA = 3, skipB = 1
输出:Reference of the node with value = https://www.it610.com/article/2
输入解释:相交节点的值为 2 (注意,如果两个列表相交则不能为 0)。从各自的表头开始算起,链表 A 为 [0,9,1,2,4],链表 B 为 [3,2,4]。在 A 中,相交节点前有 3 个节点;在 B 中,相交节点前有 1 个节点。
文章图片
输入:intersectVal = 0, listA = [2,6,4], listB = [1,5], skipA = 3, skipB = 2
输出:null
输入解释:从各自的表头开始算起,链表 A 为 [2,6,4],链表 B 为 [1,5]。由于这两个链表不相交,所以 intersectVal 必须为 0,而 skipA 和 skipB 可以是任意值。
解释:这两个链表不相交,因此返回 null。
文章图片
知识点:链表
思路:双指针
先分别遍历两链表得到其长度,作差得到两链表的长度差gap。
让指向长链表的指针先移动gap距离,然后再一起移动两个指针,一旦发现两个指针指向的对象是同一个的对象,这就是第一个重合的节点,将其返回即可。如果遍历完了链表还没有发现重合节点,根据题意返回null即可。
时间复杂度是O(n),其中n为较长链表的长度。空间复杂度是O(1)。
JAVA代码:
public class Solution {
public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
int lenA = getLength(headA);
int lenB = getLength(headB);
ListNode curA = headA;
ListNode curB = headB;
int gap = Math.abs(lenA - lenB);
if (lenA >= lenB) {
while(gap-- > 0){
curA = curA.next;
}
} else {
while(gap-- > 0){
curB = curB.next;
}
}
while(null != curA){
if(curA == curB){
return curA;
}
curA = curA.next;
curB = curB.next;
}
return null;
}
private int getLength(ListNode head) {
int len = 0;
ListNode cur = head;
while (null != cur) {
cur = cur.next;
len++;
}
return len;
}
}
LeetCode解题报告:
文章图片
【LeetCode160——相交链表】