题目地址
LeetCode#107 Binary Tree Level Order Traversal II
简直了,今天一进 LeetCode 网站,就弹出提示让我迁移到 LeetCode 国区,没想到竟然有中文版了???(而且中文版名字贼丑,力扣)是不是这是最后一个在 LeetCode 外区做的题了?
题目描述
Given a binary tree, return the bottom-up level order traversal of its nodes’ values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree [3,9,20,null,null,15,7]
,
1 | 3 |
return its bottom-up level order traversal as:
1 | [ |
解题思路
这道题就是换了个存储方法而已,和之前的那道 Binary Tree Level Order Traversal没啥区别。
解题代码
1 | /** |