⭐算法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),只使用了常数级别的额外空间。

总结

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

相关推荐
客卿1233 分钟前
力扣100-移动0
算法·leetcode·职场和发展
零叹3 小时前
篇章六 数据结构——链表(二)
数据结构·链表·linkedlist
CM莫问3 小时前
<论文>(微软)WINA:用于加速大语言模型推理的权重感知神经元激活
人工智能·算法·语言模型·自然语言处理·大模型·推理加速
计信金边罗5 小时前
是否存在路径(FIFOBB算法)
算法·蓝桥杯·图论
MZWeiei5 小时前
KMP 算法中 next 数组的构建函数 get_next
算法·kmp
Fanxt_Ja6 小时前
【JVM】三色标记法原理
java·开发语言·jvm·算法
luofeiju7 小时前
行列式的性质
线性代数·算法·矩阵
緈福的街口7 小时前
【leetcode】347. 前k个高频元素
算法·leetcode·职场和发展
南郁7 小时前
007-nlohmann/json 项目应用-C++开源库108杰
c++·开源·json·nlohmann·现代c++·d2school·108杰
pen-ai7 小时前
【统计方法】基础分类器: logistic, knn, svm, lda
算法·机器学习·支持向量机