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

二叉树的中序遍历

时间:2017-09-18 15:43:59      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:com   遍历   ges   nta   alt   ==   def   .com   技术分享   

技术分享

/**
* Definition of TreeNode:
* class TreeNode {
* public:
* int val;
* TreeNode *left, *right;
* TreeNode(int val) {
* this->val = val;
* this->left = this->right = NULL;
* }
* }
*/


class Solution {
public:
/*
* @param root: A Tree
* @return: Inorder in ArrayList which contains node values.
*/
vector <int> v;
vector<int> postorderTraversal(TreeNode * root) {
if (root == NULL) {
return v;
}
postorderTraversal(root->left);
postorderTraversal(root->right);
v.push_back(root->val);
return v;
}
};

二叉树的中序遍历

标签:com   遍历   ges   nta   alt   ==   def   .com   技术分享   

原文地址:http://www.cnblogs.com/ye-chen/p/7543231.html

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