-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path107.二叉树的层序遍历-ii.go
81 lines (78 loc) · 1.44 KB
/
107.二叉树的层序遍历-ii.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* @lc app=leetcode.cn id=107 lang=golang
*
* [107] 二叉树的层序遍历 II
*
* https://leetcode-cn.com/problems/binary-tree-level-order-traversal-ii/description/
*
* algorithms
* Medium (68.20%)
* Likes: 423
* Dislikes: 0
* Total Accepted: 130.9K
* Total Submissions: 191.6K
* Testcase Example: '[3,9,20,null,null,15,7]'
*
* 给定一个二叉树,返回其节点值自底向上的层序遍历。 (即按从叶子节点所在层到根节点所在的层,逐层从左向右遍历)
*
* 例如:
* 给定二叉树 [3,9,20,null,null,15,7],
*
*
* 3
* / \
* 9 20
* / \
* 15 7
*
*
* 返回其自底向上的层序遍历为:
*
*
* [
* [15,7],
* [9,20],
* [3]
* ]
*
*
*/
// @lc code=start
/**
* Definition for a binary tree node.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func levelOrderBottom(root *TreeNode) (res [][]int) {
res = [][]int{}
if root == nil {
return
}
// 和层序遍历没啥区别
q := []*TreeNode{root}
for len(q) > 0 {
level := []int{}
for _, x := range q {
q = q[1:]
if x.Left != nil {
q = append(q, x.Left)
}
if x.Right != nil {
q = append(q, x.Right)
}
level = append(level, x.Val)
}
res = append(res, level)
}
// 结果将便后后的列表反转
for l, r := 0, len(res)-1; l < r; {
res[l], res[r] = res[r], res[l]
l++
r--
}
return
}
// @lc code=end