自学内容网 自学内容网

力扣 简单 876.快慢指针

文章目录

题目介绍

在这里插入图片描述

题解


class Solution {
    public ListNode middleNode(ListNode head) {
        ListNode slow = head, fast = head;
        while(fast != null && fast.next != null){
            slow = slow.next;
            fast = fast.next.next;
        }
        return slow;
    }
}

原文地址:https://blog.csdn.net/qq_51352130/article/details/143036467

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!