首页 > 其他 > 详细

力扣 160 相交链表 快慢指针 双指针

时间:2020-09-15 17:07:02      阅读:73      评论:0      收藏:0      [点我收藏+]
[题目链接](https://leetcode-cn.com/problems/intersection-of-two-linked-lists/)

技术分享图片

思路一

    // 思路一,hashmap记录hashcode,没有重写的hashcode都与内存地址有关,所以这样是可以的。
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        HashMap<Integer, Boolean> map = new HashMap<>();
        while (headA != null) {
            map.put(headA.hashCode(), true);
            headA = headA.next;
        }

        while (headB != null) {
            if (map.get(headB.hashCode()) == null) {
                map.put(headB.hashCode(), true);
            }
            else {
                return headB;
            }
            headB = headB.next;
        }
        return null;
    }

思路二

力扣 160 相交链表 快慢指针 双指针

原文:https://www.cnblogs.com/bears9/p/13673378.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!