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

非递归实现树的前序遍历

时间:2017-08-01 17:54:14      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:treenode   example   while   str   tno   turn   empty   node   return   

/*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?
*/
/****************************/
struct  TreeNode{
    int val;
    TreeNode *left;
    TreeNode *right;
    TreeNode(int x):val(x),left(NULL),right(NULL){}
}
vector<int> postorder(TreeNode *root)
{
     stack<TreeNode *> s;
     vector<int> res;
     if(root==NULL) return res;
     s.push(root);
     while(!s.empty()){
         ListNode *temp=s.top();
         s.pop();
         res.push_back(temp->val);
         if(temp->right!=NULL) s.push(temp->right);
         if(temp->left!=NULL) s.push(temp->left);
     }
     return res;
}

 

非递归实现树的前序遍历

标签:treenode   example   while   str   tno   turn   empty   node   return   

原文地址:http://www.cnblogs.com/wangdake-qq/p/7268966.html

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