您的位置:首页 > 其它

Binary Tree Postorder Traversal

2014-03-25 06:43 351 查看
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 binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector<int> postorderTraversal(TreeNode *root)
{
vector<int> res;
stack<TreeNode* > sta;

TreeNode* cur = root;
TreeNode* pre = 0;
while (0 != cur || !sta.empty())
{
if (0 != cur)
{
sta.push(cur);
cur = cur->left;
}
else if (!sta.empty())
{
TreeNode* tmp = sta.top();
if (0 == tmp->right || tmp->right == pre)
{
res.push_back(tmp->val);
sta.pop();
pre = tmp;
}
else
cur = tmp->right;
}
}
return res;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: