首页 > 其他 > 详细

leetcode || 145、Binary Tree Postorder Traversal

时间:2015-05-05 12:42:11      阅读:219      评论:0      收藏:0      [点我收藏+]

problem:

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?

Hide Tags
 Tree Stack
题意:非递归后续遍历二叉树

thinking:

(1)非递归后续遍历二叉树的方法比较抽象,要借助两个stack

(2)采用双stack倒换,第一个stack出一次栈,将两个孩子(先左后右)入栈,出栈的节点保存到第二个stack。对第二个stack依次出栈即得到后续遍历的结果。

code:

class Solution {
  public:
      vector<int> postorderTraversal(TreeNode* root) {
          stack<TreeNode *> input;
          stack<TreeNode *> output;
          vector<int> ret;
          if(root==NULL)
            return ret;
          TreeNode *node = root;
          input.push(node);
          while(!input.empty())
          {
              node=input.top();
              input.pop();
              output.push(node);
              if(node->left!=NULL)
                  input.push(node->left);
              if(node->right!=NULL)
                  input.push(node->right);
          }
          while(!output.empty())
          {
              node=output.top();
              output.pop();
              ret.push_back(node->val);
          }
          return ret;
      }
  };


leetcode || 145、Binary Tree Postorder Traversal

原文:http://blog.csdn.net/hustyangju/article/details/45499291

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!