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

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

时间:2020-06-09 09:48:46      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:空间   node   长度   剑指offer   find   java   tpi   pid   hashset   

 

题目描述

输入两个链表,找出它们的第一个公共结点。(注意因为传入数据是链表,所以错误测试数据的提示是用其他方式显示的,保证传入数据是正确的)

 

题目链接:

https://www.nowcoder.com/practice/6ab1d9a29e88450685099d45c9e31e46?tpId=13&tqId=11189&rp=1&ru=/activity/oj&qru=/ta/coding-interviews/question-ranking

 

 

分析:

空间换时间,记录下list1的所有节点,遍历list2时判断是否在list1已存在。

 

 

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
import java.util.HashSet;
public class Solution {
    public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
        //记录下list1的所有节点
        HashSet<ListNode> set = new HashSet<>();
        ListNode cur = pHead1;
        while(cur != null){
            set.add(cur);
            cur = cur.next;
        }
        cur = pHead2;
        while(cur != null){
            if(set.contains(cur)){
                return cur;
            }
            cur = cur.next;
        }
        return null;
    }
}

 

 

 

方法二:

由于列表只能指向一个节点,所以一定有个共同尾部,那么可以先让长链表先走比短表多出来的长度,然后同时遍历,找到共同节点。

 

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
        //获取两个链表的长度
        int len1 = getLength(pHead1);
        int len2 = getLength(pHead2);
        //让长链表先走相差的距离
        if(len1 >= len2){
            ListNode cur = pHead1;
            int dis = len1 - len2;
            while(dis>0){
                pHead1=pHead1.next;
                dis--;
            }
        }else{
            int dis = len2 - len1;
            while(dis>0){
                pHead2=pHead2.next;
                dis--;
            }
        }
        //遍历到公共节点
        while(pHead1!=pHead2){
            pHead1 = pHead1.next;
            pHead2 = pHead2.next;
        }
        return pHead1;
    }
    
    public int getLength(ListNode cur){
        int len =0;
        while(cur != null){
            len++;
            cur = cur.next;
        }
        return len;
    }
}

 

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

标签:空间   node   长度   剑指offer   find   java   tpi   pid   hashset   

原文地址:https://www.cnblogs.com/MoonBeautiful/p/13070104.html

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