博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
根据先序中序遍历建树【模板】
阅读量:6316 次
发布时间:2019-06-22

本文共 1906 字,大约阅读时间需要 6 分钟。

主要就是通过先序找到当前子树根节点,再用中序遍历分子树,不断递归下去。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3fusing namespace std;template
Type stringToNum(const string& str){ istringstream iss(str); Type num; iss >> num; return num; }//======================================================typedef struct node{ int m_key; node * m_pLeft,*m_pRight;}BinaryTreeNode;//BinaryTreeNode* constructTree(int* preOrder,int preLen,int* sMidOrder, int midLen){ BinaryTreeNode* constructRoot(int* preOrder, int* midOrder, int len){ //先根遍历(前序遍历)的第一个值就是根节点的key int rootKey=preOrder[0]; BinaryTreeNode* root=new BinaryTreeNode; root->m_key=rootKey; root->m_pLeft=root->m_pRight=NULL; if(len==1 && *preOrder==*midOrder)//只有一个节点 return root; //在中根遍历(中序遍历)中找到根节点 int* rootMidOrder=midOrder; int leftLen=0; //左子树节点数 while(*rootMidOrder!=rootKey&&rootMidOrder<=(midOrder+len-1)){ ++rootMidOrder; ++leftLen; } if(*rootMidOrder!=rootKey)//在中根序列未找到根节点,输入错误 return NULL; if(leftLen>0){ //构建左子树 root->m_pLeft=constructRoot(preOrder+1,midOrder,leftLen); } if(len-leftLen-1>0){ //构建右子树 root->m_pRight=constructRoot(preOrder+leftLen+1,rootMidOrder+1,len-leftLen-1); } return root;}BinaryTreeNode* construct(int* preOrder,int* midOrder,int len){ if(preOrder==NULL||midOrder==NULL||len<=0) return NULL; return constructRoot(preOrder,midOrder,len);}//先根遍历void preOrderRecursionPrint(BinaryTreeNode* root){ if(root==NULL) return; cout<
m_key<
m_pLeft); preOrderRecursionPrint(root->m_pRight);}int main(){ //freopen("input.txt","r",stdin); //先根序列 int preOrder[8]={ 1,2,4,7,3,5,6,8}; //中根序列 int midOrder[8]={ 4,7,2,1,5,3,8,6}; BinaryTreeNode * treeRoot = construct(preOrder,midOrder,8); preOrderRecursionPrint(treeRoot); return 0;}

输出如下:

这里写图片描述

你可能感兴趣的文章
Linux信号 编程
查看>>
Box2D自定义重力
查看>>
python购物车
查看>>
面试/编程
查看>>
打造一个上传图片到图床利器的插件(Mac版 开源)
查看>>
iOS横竖屏
查看>>
thinkphp判断更新是否成功
查看>>
Do While ... Loop 与 Do Until ... Loop 的区别
查看>>
【Linux】查询某个字符串出现次数
查看>>
高效使用jquery之一:请使用'On'函数
查看>>
冲刺第一周第三天
查看>>
ERP环境检测工具设计与实现 Environment Detection
查看>>
不要在构造中做太多事情,不然有时候会出现有意思的代码~
查看>>
IIS 发布网站遇到的问题
查看>>
NuGet学习笔记(2)——使用图形化界面打包自己的类库
查看>>
xcode中没有autoSizing的设置
查看>>
字符编码
查看>>
企业应用:应用层查询接口设计
查看>>
浅谈Excel开发:十 Excel 开发中与线程相关的若干问题
查看>>
nfd指令的详细说明
查看>>