876. Middle of the Linked List - LeetCode

Posted okokabcd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了876. Middle of the Linked List - LeetCode相关的知识,希望对你有一定的参考价值。

Question

876.?Middle of the Linked List

技术分享图片

Solution

题目大意:求链表的中间节点

思路:构造两个节点,遍历链接,一个每次走一步,另一个每次走两步,一个遍历完链表,另一个恰好在中间

Java实现:

public ListNode middleNode(ListNode head) {
    ListNode slow = head;
    ListNode fast = head;
    while (fast != null) {
        fast = fast.next;
        if(fast != null) {
            fast = fast.next;
            slow = slow.next;
        }
    }
    return slow;
}

以上是关于876. Middle of the Linked List - LeetCode的主要内容,如果未能解决你的问题,请参考以下文章

876. Middle of the Linked List

876. Middle of the Linked List

[LeetCode] 876. Middle of the Linked List

leetcode-876 Middle of the Linked List

[LeetCode] 876. Middle of the Linked List

876. Middle of the Linked List - LeetCode