⭐算法OJ⭐找到链表的中间节点【快慢指针】(C++实现)Middle of the Linked List

876. Middle of the Linked List

Given the head of a singly linked list, return the middle node of the linked list.

If there are two middle nodes, return the second middle node.

Example 1:

复制代码
Input: head = [1,2,3,4,5]
Output: [3,4,5]
Explanation: The middle node of the list is node 3.

Example 2:

复制代码
Input: head = [1,2,3,4,5,6]
Output: [4,5,6]
Explanation: Since the list has two middle nodes with values 3 and 4, we return the second one.

问题描述

给定一个单链表的头节点 head,返回链表的中间节点。如果链表有两个中间节点(即链表长度为偶数),则返回第二个中间节点。

解题思路

要找到链表的中间节点,可以使用 快慢指针法

  • 使用两个指针,一个快指针(每次走两步)和一个慢指针(每次走一步)。
  • 当快指针到达链表末尾时,慢指针正好指向链表的中间节点。
  • 如果链表长度为偶数,慢指针会指向第二个中间节点。

C++ 实现

cpp 复制代码
// 链表节点定义
struct ListNode {
    int val;
    ListNode* next;
    ListNode(int x) : val(x), next(nullptr) {}
};

// 找到链表的中间节点
ListNode* middleNode(ListNode* head) {
    ListNode* slow = head; // 慢指针
    ListNode* fast = head; // 快指针

    while (fast && fast->next) {
        slow = slow->next;         // 慢指针走一步
        fast = fast->next->next;   // 快指针走两步
    }

    return slow; // 慢指针指向中间节点
}

复杂度分析

  • 时间复杂度: O ( n ) O(n) O(n),其中 n n n 是链表的节点数。
    • 快指针遍历链表一次,时间复杂度为 O ( n ) O(n) O(n)。
  • 空间复杂度: O ( 1 ) O(1) O(1),只使用了常数级别的额外空间。

总结

通过快慢指针法,我们可以高效地找到链表的中间节点。这种方法不仅代码简洁,而且性能优秀,适合处理大规模数据。掌握快慢指针的思想对于解决类似的链表问题非常有帮助。

相关推荐
载数而行5207 小时前
QT的五类布局
c++·qt·学习
故事和你917 小时前
sdut-程序设计基础Ⅰ-实验五一维数组(8-13)
开发语言·数据结构·c++·算法·蓝桥杯·图论·类和对象
载数而行5207 小时前
QT的QString类
c++·qt·学习
像污秽一样7 小时前
算法与设计与分析-习题4.2
算法·排序算法·深度优先·dfs·bfs
Storynone8 小时前
【Day20】LeetCode:39. 组合总和,40. 组合总和II,131. 分割回文串
python·算法·leetcode
bu_shuo8 小时前
Visual C++2010学习版(全国计算机等级二级考试版)安装记录
c++·cpp·visual c++·计算机二级
明明如月学长8 小时前
AI 更新太快学不过来?我用OpenClaw打造专属AI学习工作流
算法
黎阳之光9 小时前
【黎阳之光:以无线专网与视频孪生,赋能智慧广电与数字中国】
算法·安全·智慧城市·数字孪生
刀法如飞10 小时前
Agentic AI时代,程序员必备的算法思想指南
人工智能·算法·agent
刀法如飞10 小时前
Agentic AI时代程序员必备算法思想详解(附实战案例)
算法·ai编程·编程开发·agentic