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

根据二叉树的前序遍历和中序遍历重建二叉树

时间:2015-09-19 22:39:15      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

题目描述

输入某二叉树的前序遍历和中序遍历的结果,请重建出该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。例如输入前序遍历序列{1,2,4,7,3,5,6,8}和中序遍历序列{4,7,2,1,5,3,8,6},则重建二叉树并返回。
 1 /**
 2  * Definition for binary tree
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */ 
10 
11    struct TreeNode* reConstructBinaryTree(vector<int> pre,vector<int> in) {
12         if(pre.size()==0||in.size()==0)
13         {
14             return NULL;
15         }    
16         if(pre.size()==1)
17         {
18             return new TreeNode(pre.front());
19         }        
20         if(in.size()==1)
21         {
22             return new TreeNode(in.front());
23         }
24         int node_Val=pre.front();//用来存根节点的值
25         auto node_in=find(in.begin(),in.end(),node_Val);//根节点在in的位置
26         
27         //左子树区间
28         vector<int> left_in_Block(in.begin(),node_in);
29         int move=node_in-in.begin();
30         vector<int> left_pre_Block(++pre.begin(),pre.begin()+move+1);
31         
32         //右子树区间
33         vector<int> right_in_Block(++node_in,in.end());
34         vector<int> right_pre_Block(pre.begin()+move+1,pre.end());
35         
36         TreeNode *node=new TreeNode(node_Val);//根节点
37         node->left=reConstructBinaryTree(left_pre_Block,left_in_Block);
38         node->right=reConstructBinaryTree(right_pre_Block,right_in_Block);
39         return node;
40     }

 

根据二叉树的前序遍历和中序遍历重建二叉树

标签:

原文地址:http://www.cnblogs.com/firstcxj/p/4822271.html

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