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

<LinkedList> 160

时间:2019-11-23 17:51:09      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:code   get   lis   lin   nod   section   solution   tin   turn   

160. Intersection of Two Linked Lists

分别从AB循环两次。如果第一次没循环到,第二次就会在节点相遇。

public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        if(headA == null || headB == null) return null;
        
        ListNode a = headA;
        ListNode b = headB;
        
        while(a != b){
            a = a == null ? headB : a.next;
            b = b == null ? headA : b.next;
        }
        return a;
    }
}

21. Merge Two Sorted Lists

 

<LinkedList> 160

标签:code   get   lis   lin   nod   section   solution   tin   turn   

原文地址:https://www.cnblogs.com/Afei-1123/p/11918925.html

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