力扣算法学习(四)

链表的中间结点

 public ListNode middleNode(ListNode head) {
        ListNode fast=head,slow=head;//新建双节点一快一慢
        while(fast!=null&&fast.next!=null){
            slow=slow.next;
            fast=fast.next.next;//当fast比slow双倍移动时
        }
        return slow;
    }
上一篇:【LeetCode刷题】2.两数相加


下一篇:Leetcode 206.反转链表 迭代递归栈