码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode - Binary Tree Postorder Traversal

时间:2014-09-19 17:42:05      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   io   os   ar   for   sp   on   

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) {}
 * };
 */

//BinTree的后序遍历
struct TreeNode
{
	int val;
	TreeNode *left;
	TreeNode *right;
	TreeNode(int x) : val(x),left(NULL),right(NULL) {}
};
class Solution {
public:
	std::vector<int> postorderTraversal(TreeNode *root) {
		std::vector<int> vec;
		BinTree(root,vec);
		return vec;
    }
	void BinTree(TreeNode *root,std::vector<int> &vec)
	{
		if(root != NULL)
		{
			BinTree(root->left,vec);
			BinTree(root->right,vec);
			vec.push_back(root->val);
		}
	}
private:
	std::vector<int> vec;
};


leetcode - Binary Tree Postorder Traversal

标签:des   style   color   io   os   ar   for   sp   on   

原文地址:http://blog.csdn.net/akibatakuya/article/details/39400099

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!