您的位置:首页 > 其它

LEETCODE: Binary Tree Postorder Traversal

2015-01-10 14:08 204 查看
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> result;
stack<pair<TreeNode*, int>> noderecords;
stack<int> nodeStatus;

if(root != NULL){
noderecords.push(make_pair(root, 0));
}

while(!noderecords.empty()){
TreeNode* n = noderecords.top().first;
int status = noderecords.top().second;
noderecords.pop();

if(status == 0){
noderecords.push(make_pair(n, 1));
if(n->right != NULL){
noderecords.push(make_pair(n->right, 0));
}
if(n->left != NULL){
noderecords.push(make_pair(n->left, 0));
}
}
else{
result.push_back(n->val);
}
}

return result;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  遍历 算法 LEETCODE