首页 > 代码库 > LintCode 二叉树的后序遍历
LintCode 二叉树的后序遍历
给出一棵二叉树,返回其节点值的后序遍历。
样例
给出一棵二叉树 {1,#,2,3}
,
1
2
/
3
返回 [3,2,1]
分析:后序遍历要比先序,中序要难一些。 后序是左右根。
/** * Definition of TreeNode: * class TreeNode { * public: * int val; * TreeNode *left, *right; * TreeNode(int val) { * this->val = val; * this->left = this->right = NULL; * } * } */ class Solution { /** * @param root: The root of binary tree. * @return: Postorder in vector which contains node values. */ public: vector<int> postorderTraversal(TreeNode *root) { // write your code here TreeNode *curr,*pre; vector<int> res; stack<TreeNode *>s; curr=root; do { while(curr!=NULL) { s.push(curr); curr=curr->left; } pre=NULL; while(!s.empty()) { curr=s.top(); s.pop(); if(curr->right==pre) { res.push_back(curr->val); pre=curr; } else { s.push(curr); curr=curr->right; break; } } }while(!s.empty()); return res; } };
LintCode 二叉树的后序遍历
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。