题解 | #两个链表的第一个公共结点#

两个链表的第一个公共结点

https://www.nowcoder.com/practice/6ab1d9a29e88450685099d45c9e31e46

# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

#
# 
# @param pHead1 ListNode类 
# @param pHead2 ListNode类 
# @return ListNode类
#
class Solution:
    def FindFirstCommonNode(self , pHead1 , pHead2 ):
        # write code here
        node_s = set()
        p1, p2 = pHead1, pHead2
        while p1:
            node_s.add(p1)
            p1 = p1.next
        while p2:
            if p2 not in node_s:
                p2 = p2.next
            else:
                return p2

使用set来记录哪些节点被访问过即可,现将第一个链表的节点全部保存,然后遍历第二个链表,第一个在set中遇到的节点即为第一个公共节点。

全部评论

相关推荐

有工作后先养猫:太好了,是超时空战警,我们有救了😋
点赞 评论 收藏
分享
11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务