剑指offer七:两个链表的第一个公共结点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer七:两个链表的第一个公共结点相关的知识,希望对你有一定的参考价值。
输入两个链表,找出它们的第一个公共结点。
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七:两个链表的第一个公共结点的主要内容,如果未能解决你的问题,请参考以下文章