原题链接:二叉树遍历
常规做法,先通过先序遍历和中序遍历构造二叉树,再输出后序遍历序列
#include<iostream>
#include<cstdlib>
using namespace std;
struct node
{
char data;
struct node *lchild;
struct node *rchild;
};
node* create(string pre,string mid)
{
node *root=NULL;
int len,index;
string s1,s2;
string m1,m2;
if(pre.length()>0)
{
root=(node*)malloc(sizeof(node));
root->lchild=NULL;
root->rchild=NULL;
len=pre.length();
root->data=pre[0];
index=mid.find(pre[0]);
m1=mid.substr(0,index);
m2=mid.substr(index+1,pre.length()-index-1);
s1=pre.substr(1,index);
s2=pre.substr(index+1,pre.length()-index-1);
root->lchild=create(s1,m1);
root->rchild=create(s2,m2);
}
return root;
}
void lasvis(node *t)
{
if(t==NULL)
{
return;
}
lasvis(t->lchild);
lasvis(t->rchild);
cout<<t->data;
}
int main()
{
string pre,mid;
while(cin>>pre>>mid)
{
node *t;
t=create(pre,mid);
lasvis(t);
cout<<endl;
}
return 0;
}
7.3 分
2 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复