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

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

Given a binary tree, return the postorder traversal of its nodes' values.

For example:

Given binary tree {1,#,2,3},

1    \     2    /   3

 

return [3,2,1].

Note: Recursive solution is trivial, could you do it iteratively?

 

Code:

class Solution {public:    void findNode(vector
&nodes,TreeNode *node){ if(node->left) findNode(nodes,node->left); if(node->right) findNode(nodes,node->right); nodes.push_back(node->val); return; } vector
postorderTraversal(TreeNode *root) { vector
nodes; if(!root) return nodes; findNode(nodes,root); return nodes; }};

 

转载于:https://www.cnblogs.com/winscoder/p/3414739.html

你可能感兴趣的文章
DHCP 日志分析
查看>>
.NET Micro Framework动态调用C/C++底层代码(原理篇)
查看>>
Windows Server 2012正式版RDS系列⒃
查看>>
Shell脚本之awk篇
查看>>
微软发布Azure Stack硬件需求
查看>>
python socket编程详细介绍
查看>>
Windows Server 2016第三个技术预览版新技术
查看>>
Everything 本地磁盘文件搜索工具下载!
查看>>
Python dict(字典) 详细总结
查看>>
RPF(Reverse Path Forwarding 反向路径转发)技术
查看>>
2016年收到的第一件礼物,被评上微软全球最有价值专家MVP(一)
查看>>
2016中国VR开发者论坛第一期
查看>>
Hyper-V 2016 系列教程5 Hyper-V 服务器基本属性
查看>>
北京、天津工厂自动监测数据爬取
查看>>
第一个python程序简单加法计算器
查看>>
在CentOS下安装Tomcat8
查看>>
Weblogic classloader分析
查看>>
做技术做软件-----如何才能拿到上万的月薪
查看>>
linux 查看当前路径命令:pwd
查看>>
At.js – 用于 Web 应用程序的自动完成库
查看>>