【Hot100】LeetCode—160. 相交链表

目录

  • [1- 思路](#1- 思路)
  • [2- 实现](#2- 实现)
    • [⭐160. 相交链表------题解思路](#⭐160. 相交链表——题解思路)
  • [3- ACM 实现](#3- ACM 实现)


1- 思路

思路

  • 首先想要找到相交点,需要定义连个指针。两个指针一定得是同步的,例如 A 链表 [1,2,3,4,5] ,链表 B 是 [4,5]
    • 1- 指针对齐 :则需要指针1 先移动,移动长度为 lenA - lenB
    • 2- 同时移动 :移动指针1指针2 ,遇到相等则返回相等结点,否则返回 null

2- 实现

⭐160. 相交链表------题解思路

java 复制代码
public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        ListNode nodeA = headA;
        ListNode nodeB = headB;
        int lenA = 0;
        int lenB = 0;
        while(nodeA!=null){
            lenA++;
            nodeA = nodeA.next;
        }
        while(nodeB!=null){
            lenB++;
            nodeB = nodeB.next;
        }
        if(lenB>lenA) return getIntersectionNode(headB,headA);
        nodeA = headA;
        nodeB = headB;
        // 1. 先移动第一个指针 
        for(int i = 0 ; i < lenA-lenB;i++){
            headA = headA.next;
        }
        while(headA!=null || headB!=null){
            if(headA==headB){
                return headA;
            }
            headA = headA.next;
            headB = headB.next;
        }
        return null;
    }
}

3- ACM 实现

java 复制代码
public class getIntersectionNode {
    public static class ListNode {
        int val;
        ListNode next;
        ListNode(int x) {
            val = x;
            next = null;
        }
    }

    public static ListNode getIntersection(ListNode head1,ListNode head2){
        ListNode curA = head1;
        ListNode curB = head2;
        int len1 = 0;
        int len2 = 0;
        while(curA!=null){
            len1++;
            curA = curA.next;
        }
        while(curB!=null){
            len2++;
            curB = curB.next;
        }
        if(len1<len2) return getIntersection(head2,head1);
        // 遍历
        curA = head1;
        curB = head2;
        while (curA!=null || curB !=null){
            if(curA == curB){
                return curA;
            }
            curA = curA.next;
            curB = curB.next;
        }
        return null;
    }


    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        // 读取第一个链表的节点数量
        int n1 = sc.nextInt();
        ListNode head1 = null, tail1 = null;
        for (int i = 0; i < n1; i++) {
            int val = sc.nextInt();
            ListNode newNode = new ListNode(val);
            if (head1 == null) {
                head1 = newNode;
                tail1 = newNode;
            } else {
                tail1.next = newNode;
                tail1 = newNode;
            }
        }

        // 读取第二个链表的节点数量
        int n2 = sc.nextInt();
        ListNode head2 = null, tail2 = null;
        for (int i = 0; i < n2; i++) {
            int val = sc.nextInt();
            ListNode newNode = new ListNode(val);
            if (head2 == null) {
                head2 = newNode;
                tail2 = newNode;
            } else {
                tail2.next = newNode;
                tail2 = newNode;
            }
        }

        // 读取交点位置
        int intersectionIndex = sc.nextInt();
        if (intersectionIndex >= 0) {
            ListNode intersectionNode = head1;
            for (int i = 0; i < intersectionIndex; i++) {
                if (intersectionNode != null) {
                    intersectionNode = intersectionNode.next;
                }
            }
            if (tail2 != null) {
                tail2.next = intersectionNode;
            }
        }
        System.out.println("结果是"+getIntersection(head1,head2).val);
    }
}
相关推荐
Greedy Alg5 小时前
LeetCode 239. 滑动窗口最大值
数据结构·算法·leetcode
空白到白5 小时前
机器学习-KNN算法
人工智能·算法·机器学习
闪电麦坤956 小时前
数据结构:排序算法的评判标准(Criteria Used For Analysing Sorts)
数据结构·算法·排序算法
爱coding的橙子6 小时前
每日算法刷题Day65:8.27:leetcode dfs11道题,用时2h30min
算法·leetcode·深度优先
不懂机器人6 小时前
linux网络编程-----TCP服务端并发模型(epoll)
linux·网络·tcp/ip·算法
Mercury_Lc7 小时前
【链表 - LeetCode】25. K 个一组翻转链表
数据结构·leetcode·链表
地平线开发者7 小时前
理想汽车智驾方案介绍 3|MoE+Sparse Attention 高效结构解析
算法·自动驾驶
小O的算法实验室8 小时前
2025年KBS SCI1区TOP,矩阵差分进化算法+移动网络视觉覆盖无人机轨迹优化,深度解析+性能实测
算法·论文复现·智能算法改进
艾莉丝努力练剑9 小时前
【C语言16天强化训练】从基础入门到进阶:Day 11
c语言·学习·算法
浩少70211 小时前
LeetCode-22day:多维动态规划
算法·leetcode·动态规划