LeetCode:Binary Tree Postorder Traversal

Posted zsychanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode: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].


思路:以中右左的顺序完毕对树的遍历。然后再将结果反转。


代码:

vector<int> Solution::postorderTraversal(TreeNode *root)
{
    vector<int> postorderSequence;
    stack<TreeNode*> treeNodeStack;
    TreeNode * node = root;
    if(node == NULL)
        return postorderSequence;
    postorderSequence.push_back(node->val);
    if(node->left)
        treeNodeStack.push(node->left);
    if(node->right)
        treeNodeStack.push(node->right);
    while(!treeNodeStack.empty())
    {
        node = treeNodeStack.top();
        treeNodeStack.pop();
        postorderSequence.push_back(node->val);
        if(node->left)
            treeNodeStack.push(node->left);
        if(node->right)
            treeNodeStack.push(node->right);
    }
    reverse(postorderSequence.begin(),postorderSequence.end());
    return postorderSequence;
}









以上是关于LeetCode:Binary Tree Postorder Traversal的主要内容,如果未能解决你的问题,请参考以下文章

[Leetcode] Binary tree -- 501. Find Mode in Binary Search Tree

LeetCode Binary Tree Tilt

[Leetcode] Binary Index Tree

LeetCode-Invert Binary Tree

LeetCode Binary Tree Vertical Order Traversal

[Leetcode] Binary tree -- 617. Merge Two Binary Trees