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

剑指offer七:两个链表的第一个公共结点

时间:2016-12-07 23:31:55      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:color   return   stc   hash   剑指offer   log   lis   mon   ext   

输入两个链表,找出它们的第一个公共结点。

import java.util.*;
public class Solution {
    public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
         ListNode current1 = pHead1;
        ListNode current2 = pHead2;
          
       HashMap<ListNode,Integer> hashMap = new HashMap<ListNode,Integer>();
        
        while(current1 != null){
            hashMap.put(current1,null);
            current1 = current1.next;
        }
        while(current2 != null){
            if(hashMap.containsKey(current2)){
                return current2;
            }
            current2 = current2.next;
        }
        return null;
    }
}

 

剑指offer七:两个链表的第一个公共结点

标签:color   return   stc   hash   剑指offer   log   lis   mon   ext   

原文地址:http://www.cnblogs.com/lfdingye/p/6142952.html

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