LeetCode 剑指 Offer 06. 从尾到头打印链表

题目描述

🔥 剑指 Offer 06. 从尾到头打印链表

给定一个链表,从尾到头打印链表的每个节点的值。

示例 1: 输入:head = [1, 3, 2] 输出:[2, 3, 1]

示例 2: 输入:head = [] 输出:[]

提示:

  • 链表的节点数在范围 [0, 10000] 内。

image-20241107204146295

思路分析

思路描述

参考代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func printListFromTailToHead(head *ListNode) []int {
	var res []int
	var dfs func(node *ListNode)

	dfs = func(node *ListNode) {
		if node == nil {
			return
		}
		dfs(node.Next)
		res = append(res, node.Val)
	}

	dfs(head)
	return res
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func reverseBookList(head *ListNode) []int {
	var res []int
	var dfs func(node *ListNode)

	dfs = func(node *ListNode) {
		if node == nil {
			return
		}
		dfs(node.Next)
		res = append(res, node.Val)
	}

	dfs(head)
	return res
}

🍏 点击查看 Java 题解

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