首页 > 代码库 > [LeetCode]Binary Tree Postorder Traversal
[LeetCode]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]
.
【代码】
/********************************* * 日期:2014-12-07 * 作者:SJF0115 * 题号: Binary Tree Postorder Traversal * 来源:https://oj.leetcode.com/problems/binary-tree-postorder-traversal/ * 结果:AC * 来源:LeetCode * 总结: **********************************/ #include <iostream> #include <malloc.h> #include <vector> #include <stack> using namespace std; 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> v; stack<TreeNode *> stack; TreeNode *p = root; TreeNode *q; do{ //遍历左子树 while(p != NULL){ stack.push(p); p = p->left; } q = NULL; while(!stack.empty()){ p = stack.top(); stack.pop(); // 右子树是否为空或者已访问过 if(p->right == q){ v.push_back(p->val); //保留访问过的节点 q = p; } else{ //当前节点不能访问,p节点重新入栈 stack.push(p); //处理右子树 p = p->right; break; }//if }//while }while(!stack.empty());//while return v; } }; //按先序序列创建二叉树 int CreateBTree(TreeNode* &T){ char data; //按先序次序输入二叉树中结点的值(一个字符),‘#’表示空树 cin>>data; if(data =http://www.mamicode.com/= '#'){>[LeetCode]Binary Tree Postorder Traversal
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。