C++版 - LeetCode 145: Binary Tree Postorder Traversal(二叉树的后序遍历,迭代法)
145. Binary Tree Postorder Traversal
提交网址: https://leetcode.com/problems/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].
Note: Recursive solution is trivial, could you do it iteratively?
分析:
AC代码:
#include<iostream>
#include<vector>
#include<stack>
#include<algorithm>  // 引入 reverse函数,对vector进行反转
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> res(0);
        if(root==NULL) return res;
        stack<TreeNode *> st;
        TreeNode *p=root;
        while(!st.empty()|| p!=NULL)
        {
            if(p!=NULL)
            {
            st.push(p);
            res.push_back(p->val);
            p=p->right;
            }
            if(p==NULL)
            {
                p=st.top();
                p=p->left;
                st.pop();
            }
        }
        reverse(res.begin(),res.end());    // 对向量及其内部结构进行反转
     return res;
    }
};
// 以下为测试
int main()
{
	Solution sol;
	vector<int> res;
	TreeNode *root = new TreeNode(1);
    root->right = new TreeNode(2);
    root->right->left = new TreeNode(3); 
	res=sol.postorderTraversal(root);
	for(int i:res)
		cout<<i<<" ";  // 此处为vector遍历的方法,C++11标准支持
	return 0;
}另一解法(非递归):
后序遍历的麻烦在于访问过右子树之后,第二次访问的时候就必须访问根节点,而不是继续访问右子树,所以使用pre来记录上次访问的节点...
class Solution {
public:
    vector<int> postorderTraversal(TreeNode *root) {
        vector<int> ans;
        if(root == NULL) return ans;
        stack<TreeNode* > s;
        TreeNode * p = root;
        TreeNode * pre = NULL;                 //  记录上次访问的节点
        while(p != NULL || !s.empty()) {
            while(p != NULL) {
                s.push(p);
                p = p->left;
            }
            if(!s.empty()) {
                p = s.top();
                s.pop();
                if(p->right == NULL || p->right == pre) {        // 右子树为空,或者是访问过
                    ans.push_back(p->val);
                    pre = p;                         // 记录刚刚访问的右节点
                    p = NULL;
                }
                else {
                    s.push(p);
                    p = p->right;
                }
            }
        }
        return ans;
    }
};C++版 - LeetCode 145: Binary Tree Postorder Traversal(二叉树的后序遍历,迭代法)的更多相关文章
- [LeetCode] 145. Binary Tree Postorder Traversal 二叉树的后序遍历
		Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary ... 
- LeetCode 145. Binary Tree Postorder Traversal 二叉树的后序遍历 C++
		Given a binary tree, return the postorder traversal of its nodes' values. Example: Input: [,,] \ / O ... 
- LeetCode 145. Binary Tree Postorder Traversal二叉树的后序遍历 (C++)
		题目: Given a binary tree, return the postorder traversal of its nodes' values. Example: Input: [1,nul ... 
- 【LeetCode】Binary Tree Postorder Traversal(二叉树的后序遍历)
		这道题是LeetCode里的第145道题. 题目要求: 给定一个二叉树,返回它的 后序 遍历. 示例: 输入: [1,null,2,3] 1 \ 2 / 3 输出: [3,2,1] 进阶: 递归算法很 ... 
- leetcode题解:Binary Tree Postorder Traversal (二叉树的后序遍历)
		题目: Given a binary tree, return the postorder traversal of its nodes' values. For example:Given bina ... 
- 145 Binary Tree Postorder Traversal 二叉树的后序遍历
		给定一棵二叉树,返回其节点值的后序遍历.例如:给定二叉树 [1,null,2,3], 1 \ 2 / 3返回 [3,2,1].注意: 递归方法很简单,你可以使用迭代方法来解 ... 
- [LeetCode] Binary Tree Postorder Traversal 二叉树的后序遍历
		Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary ... 
- lintcode:Binary Tree Postorder Traversal 二叉树的后序遍历
		题目: 二叉树的后序遍历 给出一棵二叉树,返回其节点值的后序遍历. 样例 给出一棵二叉树 {1,#,2,3}, 1 \ 2 / 3 返回 [3,2,1] 挑战 你能使用非递归实现么? 解题: 递归程序 ... 
- Leetcode145. Binary Tree Postorder Traversal二叉树的后序遍历
		给定一个二叉树,返回它的 后序 遍历. 进阶: 递归算法很简单,你可以通过迭代算法完成吗? 递归: class Solution { public: vector<int> res; ve ... 
随机推荐
- 安装nodeJs静态服务器(NodeJs Express MVC 框架)
			安装 NodeJs Express MVC 框架 新建项目文件夹 打开cmd 执行以下操作: 一.使用Express框架 1)安装express3 $: npm install -g ex ... 
- 笔记本电脑连接wifi,同时提供热点wifi给手机使用
			笔记本电脑连接wifi,同时提供热点wifi给手机使用 用电脑建立WiFi供手机平板设备使用ps:电脑需要有无线网卡,一般笔记本都自带 此教程仅适用Windows 7 & 8,1.打开笔记本的 ... 
- 继承中的prototype与_proto_
			继承的核心是原型链,它的基本思想是利用原型让一个引用类型继承另一个引用类型的属性和方法. 例:SubType.prototype = new SuperType (); var instance = ... 
- 88、const、static、extern介绍
			一.const与宏的区别 const简介:之前常用的字符串常量,一般是抽成宏,但是苹果不推荐我们抽成宏,推荐我们使用const常量. 执行时刻:宏是预编译(编译之前处理)const是编译阶段. 编译检 ... 
- LinkeList 特有方法
			LinkedList:特有方法:addFirst();addLast();添加元素到集合,添加到头尾,getFirst();getLast();获取元素,但不删除元素.如果集合中没有元素,会出现NoS ... 
- 在windows上安装VTK
			看了很多教程,花了1天半的时间装上了,记录下. 前置条件:我安装了VS2015,用来编译工程. 参考资料 官方:http://www.vtk.org/Wiki/VTK/Building 安装:http ... 
- 1.准备工作之Groovy
			Groovy(读做:gu : ru : wei) Groovy是一种运行在jvm上的动态语言,它吸取了Python.Ruby和SmallTalk等语言的优点:在Java的基础之上增加了许多特色功能,相 ... 
- Azure Active Directory document ---reading notes
			微软利用本地活动目录 Windows Server Active Directory 进行身份认证管理方面具有丰富的经验,现在这一优势已延伸基于云平台的Azure Active Directory.可 ... 
- ubuntu18.04LTS设置静态IP
			ubuntu18.04LTS设置静态IP 因为Ubuntu18.04采用的是netplan来管理network.所以在/etc/netplan/目录下有一个以yaml结尾的文件.比如01-networ ... 
- 吴恩达机器学习笔记14-逻辑回归(Logistic Regression)
			在分类问题中,你要预测的变量 
