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

getIntersectionNode

时间:2020-06-07 12:54:05      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:alt   ima   png   hashmap   next   cti   ret   tin   adb   

技术图片

技术图片

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
// 最容易想到的是hashmap
// 双指针法 
public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        if(headA == null || headB == null) return null;
        ListNode pA = headA; ListNode pB = headB;
        while(pA != pB){
            pA = pA == null? headB:pA.next;
            pB = pB == null? headA:pB.next;
        }
        return pA;
    }
}

getIntersectionNode

标签:alt   ima   png   hashmap   next   cti   ret   tin   adb   

原文地址:https://www.cnblogs.com/athony/p/13060048.html

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