力扣题解:面试题 02.07. 链表相交

题目

给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表没有交点,返回 null 。
图示两个链表在节点 c1 开始相交:
题目数据 保证 整个链式结构中不存在环。
注意,函数返回结果后,链表必须 保持其原始结构 。

解题思路

如下图所示,判断链表A和链表B是否相交,可以判断A+B与B+A是否有相同节点。

力扣题解:面试题 02.07. 链表相交_第1张图片

代码

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
  public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
    if (headA == null || headB == null) return null;
    ListNode node1 = headA, node2 = headB;
    // 是否已经拼接过(headA+headB)
    boolean joined = false;
    while (node1 != null) {
      if (node2 == null) node2 = headA;
      // 如果相同,即相交,返回
      if (node1 == node2) return node1;
      node1 = node1.next;
      node2 = node2.next;
      if (!joined && node1 == null) {
        node1 = headB;
        joined = true;
      }
    }
    return null;
  }
}

题目来源:力扣(LeetCode)

你可能感兴趣的:(算法,LeetCode,算法,leetcode题解,力扣题解,链表相交,链表)