码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode || 145、Binary Tree Postorder Traversal

时间:2015-05-05 12:45:27      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:leetcode   二叉树   后续遍历   非递归遍历   stack   

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

标签:leetcode   二叉树   后续遍历   非递归遍历   stack   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!