剑指Offer-两个链表的第一个公共结点

题目描述

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

解题思路—长度长的链表先走看完题目首先要明确一点,如果链表中存在公共结点,则链表尾一定是一样的! 所以可以先找出2个链表的长度,然后让长的先走两个链表的长度差,然后再一起走。

解题思路—链表循环:这个方法非常的巧妙不需要考虑链表的长度用两个指针扫描两个链表,最终两个指针到达 null 或者到达公共结点推荐

核心思想为:
长度相同有公共结点,第一次就能遍历到;没有公共结点,走到尾部NULL相遇,返回NULL;
长度不同有公共结点,第一遍遍历出差值,第二遍一起到公共结点;没有公共结点,则一起到结尾,返回NULL。

解题思路—HashMap:可以使用HashMap的特点,先将一个链表存入HashMap,再依次判断另一个链表的结点是否存在于HashMap中
解题思路—堆栈:这个方法的着手点为两个链表要是有公共结点,必有公共链表尾。使用堆栈将链表压入,从尾部开始判断,直至链表结点不相等

Java解题—长度长的链表先走

public class Solution {
    public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
        ListNode current1 = pHead1;
        ListNode current2 = pHead2;
        if (pHead1 == null || pHead2 == null)
            return null;
        int length1 = getLength(current1);
        int length2 = getLength(current2);
         
        // 链表1.length>链表2.length,链表1先走
        if (length1 >= length2) {
            int len = length1 - length2;
            while (len > 0) {
                current1 = current1.next;
                len--;
            }
 
        }
        // 链表2.length>链表1.length,链表2先走
        else if (length1 < length2) {
            int len = length2 - length1;
            while (len > 0) {
                current2 = current2.next;
                len--;
            }
        }
        
        //两个链表一起走
        while(current1!=current2){
            current1=current1.next;
            current2=current2.next;
        }
        return current1;
    }
    
    public int getLength(ListNode pHead) {
        int length = 0;
 
        ListNode current = pHead;
        while (current != null) {
            length++;
            current = current.next;
        }
        return length;
    }
}

Java解题—链表循环

public class Solution {
    public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
    	if (pHead1 == null || pHead2 == null)
            return null;
        ListNode p1 = pHead1;
        ListNode p2 = pHead2;
        
        while(p1!=p2){
            p1 = (p1==null ? pHead2: p1.next);
            p2 = (p2==null ? pHead1: p2.next);
        }
        
        return p1;
    }
}

Java解题—HashMap

import java.util.HashMap;
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;
    }
}

Java解题—堆栈

import java.util.Stack;
public class Solution {
    public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
    	if (pHead1 == null || pHead2 == null) 
            return null;
        
        Stack<ListNode> stack1 = new Stack<>();
        Stack<ListNode> stack2 = new Stack<>();
 
        while (pHead1 != null) {
            stack1.push(pHead1);
            pHead1 = pHead1.next;
        }
 
        while (pHead2 != null) {
            stack2.push(pHead2);
            pHead2 = pHead2.next;
        }
 
        ListNode commonListNode = null;
 
        while (!stack1.isEmpty() && !stack2.isEmpty() && stack1.peek() == stack2.peek() ) {
            stack2.pop();
            commonListNode = stack1.pop();;
        }
 
        return commonListNode;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值