标签:div vector binary font neu 后序遍历 mono color std
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
标签:div vector binary font neu 后序遍历 mono color std
原文地址:http://www.cnblogs.com/wzzkaifa/p/7123251.html