博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
已知二叉树的前序与中序遍历创建二叉树
阅读量:5009 次
发布时间:2019-06-12

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

1 #include
2 #include
3 #include
4 #include
5 using namespace std; 6 struct Node 7 { 8 char data; 9 Node *lchild;10 Node *rchild;11 };12 Node *CreatTree(string pre,string in)13 {14 Node *root=NULL;15 if(pre.length()>0)16 {17 root=new Node;18 root->data=pre[0];19 int index=in.find(root->data);20 root->lchild=CreatTree(pre.substr(1,index),in.substr(0,index));21 root->rchild=CreatTree(pre.substr(index+1),in.substr(index+1));22 }23 return root;24 }25 void Preorder(Node *root)26 {27 if(root)28 {29 putchar(root->data);30 Preorder(root->lchild);31 Preorder(root->rchild);32 }33 }34 void Inorder(Node *root)35 {36 if(root)37 {38 Inorder(root->lchild);39 putchar(root->data);40 Inorder(root->rchild);41 }42 }43 void Postorder(Node *root)44 {45 if(root)46 {47 Postorder(root->lchild);48 Postorder(root->rchild);49 putchar(root->data);50 }51 }52 int main()53 {54 Node *root;55 string pre,in;56 while(cin>>pre>>in)57 {58 root=CreatTree(pre, in);59 Postorder(root);60 putchar('\n');61 }62 return 0;63 }

转载于:https://www.cnblogs.com/mycapple/archive/2012/08/03/2620974.html

你可能感兴趣的文章
Codeforces Round #344 (Div. 2) Messager KMP的应用
查看>>
20145308刘昊阳 《Java程序设计》第4周学习总结
查看>>
js倒计时
查看>>
EasyUI datagrid 格式 二
查看>>
Android虹软人脸识别sdk使用工具类
查看>>
UI:基础
查看>>
浅谈 @RequestParam 和@PathVariable
查看>>
设计模式之---装饰器设计模式
查看>>
基于WordNet的英文同义词、近义词相似度评估及代码实现
查看>>
Equation漏洞混淆利用分析总结(上)
查看>>
shell学习1shell简介
查看>>
Qt 【无法打开 xxxx头文件】
查看>>
JAVA项目将 Oracle 转 MySQL 数据库转换(Hibernate 持久层)
查看>>
三层架构(我的理解及详细分析)
查看>>
Django模板语言相关内容
查看>>
前端开发工程师如何在2013年里提升自己【转】--2016已更新升级很多何去何从?...
查看>>
markdown语法测试集合
查看>>
running and coding
查看>>
实现QQ第三方登录、网站接入
查看>>
HTML CSS 层叠样式表 三
查看>>