首页 > 其他 > 详细

链表--相交链表(leetcode 160

时间:2020-06-21 22:59:06      阅读:104      评论:0      收藏:0      [点我收藏+]

题解

若相交,链表A: a+c, 链表B : b+c. a+c+b = b+c+a 。则会在公共处c起点相遇。若不相交,a +b = b+a 。因此相遇处是NULL

技术分享图片

用一句歌词总结:走过你来时的路

代码:

public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
    if (headA == null || headB == null){
        return null;
    }
    ListNode tempA = headA;
    ListNode tempB = headB;
    while (tempA != tempB){
        tempA = tempA == null ? headB : tempA.next;
        tempB = tempB == null ? headA : tempB.next;
    }

    return tempB;
}

时间:O(n),空间:O(1)


引申

《程序员代码面试指南》P62 “两个单链表相交的一系列问题”

链表--相交链表(leetcode 160

原文:https://www.cnblogs.com/swifthao/p/13174390.html

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