king-lxt / LeetCode-javasctipt

leetCode 答案
0 stars 0 forks source link

链表的中间结点 #9

Open king-lxt opened 3 years ago

king-lxt commented 3 years ago

示例 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,我们返回第二个结点。

king-lxt commented 3 years ago
var middleNode = function(head) {
    if(!head) return;
    const arr = [];

    while(head){
        arr.push(head);
        head = head.next;
    } 
    return  arr[Math.ceil((arr.length - 1)/2)]
}
king-lxt commented 3 years ago

 var middleNode = function(head) {
    if(!head) return;
    let fast = slow = head;
    while(fast.next && slow){
        slow = slow.next;
        fast = fast.next.next;
    }
    return slow;
}