Merge pull request #1587 from easydonny/patch-1

Update 面试题02.07.链表相交.md
This commit is contained in:
程序员Carl
2022-08-23 09:18:47 +08:00
committed by GitHub

View File

@ -7,6 +7,8 @@
# 面试题 02.07. 链表相交 # 面试题 02.07. 链表相交
160.链表相交
[力扣题目链接](https://leetcode.cn/problems/intersection-of-two-linked-lists-lcci/) [力扣题目链接](https://leetcode.cn/problems/intersection-of-two-linked-lists-lcci/)
给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表没有交点,返回 null 。 给你两个单链表的头节点 headA 和 headB ,请你找出并返回两个单链表相交的起始节点。如果两个链表没有交点,返回 null 。