LeetCode 876. 链表的中间结点

题目描述

🔥 876. 链表的中间结点

image-20230305195119128

思路分析

快慢指针

参考代码

1
2
3
4
5
6
7
8
func middleNode(head *ListNode) *ListNode {
	slow, fast := head, head
	for fast != nil && fast.Next != nil {
		slow = slow.Next
		fast = fast.Next.Next
	}
	return slow
}

🍏 点击查看 Java 题解

1
write your code here
本文作者:
本文链接: https://hgnulb.github.io/blog/67928740
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处!