Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 1.17 KB

05_876. 链表的中间结点.md

File metadata and controls

39 lines (33 loc) · 1.17 KB

easy

给定一个头结点为 head 的非空单链表,返回链表的中间结点。

如果有两个中间结点,则返回第二个中间结点。

示例 1:

输入:[1,2,3,4,5] 输出:此列表中的结点 3 (序列化形式:[3,4,5]) 返回的结点值为 3 。 (测评系统对该结点序列化表述是 [3,4,5])。 注意,我们返回了一个 ListNode 类型的对象 ans,这样: ans.val = 3, ans.next.val = 4, ans.next.next.val = 5, 以及 ans.next.next.next = NULL.

示例 2:

输入:[1,2,3,4,5,6] 输出:此列表中的结点 4 (序列化形式:[4,5,6]) 由于该列表有两个中间结点,值分别为 3 和 4,我们返回第二个结点。

来源:力扣(LeetCode) 链接:https://leetcode.cn/problems/middle-of-the-linked-list

//  每次慢指针先走一步,快指针走两步
//  到达末尾就是快指针走的路程是慢指针的两倍
var middleNode = function (head) {
    if (head.next === null) { return head }
    let slow = head
    let fast = head
    while (fast !== null && fast.next !== null) {
        slow = slow.next
        fast = fast.next.next
    }
    return slow
};