LintCode 二叉树的后序遍历
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 二叉树的后序遍历的主要内容,如果未能解决你的问题,请参考以下文章