码迷,mamicode.com
首页 > 其他好文 > 详细

160. 相交链表

时间:2021-04-06 14:05:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:com   rgba   next   solution   ref   targe   null   while   color   

题目链接

解题思路:双指针

C++:

/**
 * 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) {
        if (!headA || !headB) {
            return NULL;
        }
        if (headA == headB) {
            return headA;
        }

        ListNode *you = headA, *she = headB;
        while (you != she) {
            you = you ? you->next : headB;
            she = she ? she->next : headA;
        }
        return you;
    }
};

 

160. 相交链表

标签:com   rgba   next   solution   ref   targe   null   while   color   

原文地址:https://www.cnblogs.com/pursuiting/p/14614732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!