Binary Tree Postorder Traversal

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<int> &nodes,TreeNode *node){
        if(node->left)
            findNode(nodes,node->left);
        if(node->right)
            findNode(nodes,node->right);
        nodes.push_back(node->val);
        return;
    }
    
    vector<int> postorderTraversal(TreeNode *root) {
        vector<int> nodes;
        if(!root) return nodes;
        findNode(nodes,root);
        return nodes;
    }
};
复制代码

 

posted @   WinsCoder  阅读(117)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
阅读排行:
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· ShadowSql之.net sql拼写神器
· Excel百万数据如何快速导入?
· 无需WebView,Vue也能开发跨平台桌面应用
点击右上角即可分享
微信分享提示