145. Binary Tree Postorder Traversal[hard]

来源:互联网 发布:python 高斯函数 编辑:程序博客网 时间:2024/06/11 09:58

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?


水题,输出二叉树的后序


/** * Definition for a binary tree node. * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    vector<int> ans;    void dfs(TreeNode* root)    {        if(root == NULL)            return;        if(root->left != NULL)            postorderTraversal(root->left);        if(root->right != NULL)            postorderTraversal(root->right);        ans.push_back(root->val);    }    vector<int> postorderTraversal(TreeNode* root) {        dfs(root);        return ans;    }    };



0 0
原创粉丝点击