相交链表

编写一个程序,找到两个单链表相交的起始节点。
如下面的两个链表:
在这里插入图片描述
在节点 c1 开始相交。
示例 1:
在这里插入图片描述
输入: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 = 8
输入解释:相交节点的值为 8 (注意,如果两个列表相交则不能为 0)。从各自的表头开始算起,链表 A 为 [4,1,8,4,5],链表 B 为 [5,0,1,8,4,5]。在 A 中,相交节点前有 2 个节点;在 B 中,相交节点前有 3 个节点。

示例 2:
在这里插入图片描述

输入:intersectVal = 2, listA = [0,9,1,2,4], listB = [3,2,4], skipA = 3, skipB = 1
输出:Reference of the node with value = 2
输入解释:相交节点的值为 2 (注意,如果两个列表相交则不能为 0)。从各自的表头开始算起,链表 A 为 [0,9,1,2,4],链表 B 为 [3,2,4]。在 A 中,相交节点前有 3 个节点;在 B 中,相交节点前有 1 个节点。

示例 3:
在这里插入图片描述
输入: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。

注意:
如果两个链表没有交点,返回 null.
在返回结果后,两个链表仍须保持原有的结构。
可假定整个链表结构中没有循环。
程序尽量满足 O(n) 时间复杂度,且仅用 O(1) 内存。

1、

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def getIntersectionNode(self, headA: ListNode, headB: ListNode) -> ListNode:
        p = headA
        q = headB
        # 两个不同指针走过相同长度的路后相遇
        while p != q:
            # 判断p.next开销大,此处判断p是否为空
            p = p.next if p else headB
            q = q.next if q else headA
        return p 

2、

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def getIntersectionNode(self, headA: ListNode, headB: ListNode) -> ListNode:
        """
        :type head1, head1: ListNode
        :rtype: ListNode
        """
        hashIDs = {}
        while headA:
            hashIDs[id(headA)] = 1
            headA = headA.next
        while headB:
            if id(headB) in hashIDs:
                return headB
            headB = headB.next

3、

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def getIntersectionNode(self, headA, headB):
        d = dict()
        while headA:
            d[headA] = 1
            headA = headA.next
        while headB:
            if headB in d:
                return headB
            headB = headB.next
        return None

先遍历链表A,将链表A的结点存放在字典中。再遍历链表B,如果该结点已在字典中,则为相交起始结点

4、

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def getIntersectionNode(self, headA, headB):
        a, b = (headA, headB) if headA and headB else (None, None)
        while a != b: a, b = not a and headB or a.next, not b and headA or b.next
        return a
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是C++相交链表的完整代码,其中包括了两种不同的解法: 解法一:常规遍历方法 ``` class Solution { public: ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) { // 如果单链表A和单链表B至少有一个为空,则两个单链表不存在相交节点,返回null if(headA == nullptr || headB == nullptr) { return nullptr; } // 记录经过的所有节点 // 注意!这里记录的是单链表的节点,不是节点的值 unordered_set<ListNode *> visited; // 记录当前节点 ListNode *p=headA; // 循环遍历单链表A while(p!=nullptr) { // 保存访问过的节点 visited.insert(p); // 访问下一个节点 p=p->next; } // 遍历完单链表A后继续遍历单链表B p=headB; // 循环遍历单链表B while(p!=nullptr) { // 如果当前节点存在于已访问过的节点中 if(visited.count(p)) { // 则当前节点就是相交节点 return p; } // 访问下一个节点 p=p->next; } // 两个单链表不存在相交节点,返回null return nullptr; } }; ``` 解法二:基于双指针的方法 ``` class Solution { public: ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) { // 如果单链表A和单链表B至少有一个为空,则两个单链表不存在相交节点,返回null if(headA == nullptr || headB == nullptr) { return nullptr; } // 定义两个指针分别指向两个单链表的头节点 ListNode *pA=headA; ListNode *pB=headB; // 在两个指针相遇之前,持续遍历两个单链表 while(pA!=pB) { // 如果单链表A遍历结束 if(pA==nullptr) { // 将pA指向单链表B的头节点 pA=headB; } else { // 否则继续遍历 pA=pA->next; } // 如果单链表B遍历结束 if(pB==nullptr) { // 将pB指向单链表A的头节点 pB=headA; } else { // 否则继续遍历 pB=pB->next; } } // 两个指针相遇之后 // 相遇点即为两个单链表相交节点 return pA; } }; ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值