随笔- 509  文章- 0  评论- 151  阅读- 22万 

Binary Tree Level Order Traversal II

2014.1.8 01:45

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,#,#,15,7},

    3
   / \
  9  20
    /  \
   15   7

return its bottom-up level order traversal as:

[
  [15,7]
  [9,20],
  [3],
]

confused what "{1,#,2,3}" means? > read more on how binary tree is serialized on OJ.

Solution:

  This is a variation from: LeetCode - Binary Tree Level Order Traversal.

  Level-order traversal of a binary tree can be done with stl-queue. But in this problem it can be done with preorder traversal, too.

  When the traversal is done, reverse the result by row and you get what you need.

  Time and space complexities are both O(n), where n is the number of nodes in the tree. Space complexity comes from the local parameters passed in function calls.

Accepted code:

复制代码
 1 // 1CE, 1AC, when copying the code, make sure you don't mix up the name of function and variables!!
 2 /**
 3  * Definition for binary tree
 4  * struct TreeNode {
 5  *     int val;
 6  *     TreeNode *left;
 7  *     TreeNode *right;
 8  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 9  * };
10  */
11 class Solution {
12 public:
13     //1CE here, levelOrder, levelOrderBottom, check the names before you copy the codes!!!!
14     // That was stupid, man~
15     vector<vector<int> > levelOrderBottom(TreeNode *root) {
16         // IMPORTANT: Please reset any member data you declared, as
17         // the same Solution instance will be reused for each test case.
18         // I could use pre-order traversal to do this.
19         // Level-order traversal makes sense too.
20         
21         // 1CE here, declaration of int i is MISSSING
22         for(int i = 0; i < result.size(); ++i){
23             result[i].clear();
24         }
25         result.clear();
26         
27         if(root == nullptr){
28             return result;
29         }
30         
31         preOrder(root, 0);
32 
33         vector<int> tmp;
34         int i = 0;
35         while(i < result.size() - 1 - i){
36             tmp = result[i];
37             result[i] = result[result.size() - 1 - i];
38             result[result.size() - 1 - i] = tmp;
39             ++i;
40         }
41         return result;
42     }
43 private:
44     vector<vector<int>> result;
45     
46     void preOrder(TreeNode *root, int height) {
47         if(root == nullptr){
48             return;
49         }
50         // 1CE here,  ) MISSING!!!
51         while(result.size() <= height){
52             result.push_back(vector<int>());
53         }
54         result[height].push_back(root->val);
55         
56         if(root->left != nullptr){
57             preOrder(root->left, height + 1);
58         }
59         if(root->right != nullptr){
60             // 1CE here, spelling error, pre-order preOrder
61             // Don't rely on auto-complete, you're spoiled!!!
62             preOrder(root->right, height + 1);
63         }
64     }
65 };
复制代码

 

 posted on   zhuli19901106  阅读(143)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示