博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Binary Tree Level Order Traversal II
阅读量:5150 次
发布时间:2019-06-13

本文共 1469 字,大约阅读时间需要 4 分钟。

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],] 先查看有几层,然后填进去。
/** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    vector
> re; int levv; vector
> levelOrderBottom(TreeNode *root) { if(root == NULL)return re; levv = level(root); for(int i = 0 ; i < levv ;i++) { vector
vec; re.push_back(vec); } bottom(root,1); return re; } void bottom(TreeNode * root ,int lev) { if(root == NULL)return; re[levv - lev].push_back(root->val); bottom(root->left,lev+1); bottom(root->right,lev+1); } int level(TreeNode *root) { if(root->left == NULL && root ->right == NULL)return 1; else if(root->left == NULL) return level(root->right)+1; else if(root->right == NULL) return level(root->left)+1; else return max(level(root->left),level(root->right))+1; }};

  

转载于:https://www.cnblogs.com/pengyu2003/p/3611443.html

你可能感兴趣的文章
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
【26】java的组合与继承
查看>>
web开发,我们是否应该更加Deep Inside了?
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>
TLS 1.0协议
查看>>
java递归的几种用法
查看>>
转:Linux设备树(Device Tree)机制
查看>>
iOS 组件化
查看>>
python安装win32api pywin32 后出现 ImportError: DLL load failed
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
tkinter布局
查看>>
命令ord
查看>>
利用新浪微博来控制电脑
查看>>
洛谷 P3367 【模板】并查集
查看>>
方法Equals和操作符==的区别
查看>>
我的软件工程师之路,给需要的同学!
查看>>