首页 > 其他 > 详细

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

时间:2021-07-22 23:41:41      阅读:21      评论:0      收藏:0      [点我收藏+]

题目链接:https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof/
题目描述:
输入两个链表,找出它们的第一个公共节点。
如下面的两个链表:

技术分享图片

在节点 c1 开始相交。

示例 1:

技术分享图片

示例 2:
技术分享图片

题解:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
        ListNode *PA = headA;
        ListNode *PB = headB;
        int l1 = 0;
        int l2 = 0;
        while(PA != NULL)
        {
            l1++;
            PA = PA->next;
        }
        while(PB != NULL)
        {
            l2++;
            PB = PB->next;
        }
        PA = headA;
        PB = headB;
        if(l1 > l2)
        {
            int s = l1 - l2;
            while(s--)
            {
                PA = PA ->next;
            }
        }else if(l1 < l2)
        {
            int s = l2 - l1;
            while(s--)
            {
                PB = PB ->next;
            }
        }
        while(PA != NULL)
        {
            if(PA == PB)
                return PA;
            PA = PA -> next;
            PB = PB -> next;
        }
        
        return NULL;
    }
};

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

原文:https://www.cnblogs.com/ZigHello/p/15046551.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!