数据结构实验之二叉树二:遍历二叉树
题目描述
已知二叉树的一个按先序遍历输入的字符序列,如abc,,de,g,,f,,, (其中,表示空结点)。请建立二叉树并按中序和后序的方式遍历该二叉树。
输入
连续输入多组数据,每组数据输入一个长度小于50个字符的字符串。
输出
每组输入数据对应输出2行:
第1行输出中序遍历序列;
第2行输出后序遍历序列。
示例输入
abc,,de,g,,f,,,
示例输出
cbegdfacgefdba
提示
#include<bits/stdc++.h>
using namespace std;
struct node
{
char data;
struct node *l;
struct node *r;
};
int i;
string s;
struct node *creat()
{
struct node *root;
if(s[i++]==',')
root=NULL;
else
{
root=new node;
root->data=s[i-1];
root->l=creat();
root->r=creat();
}
return root;
};
void middle(struct node *root)
{
if(root)
{
middle(root->l);
cout<<root->data;
middle(root->r);
}
}
void last(struct node *root)
{
if(root)
{
last(root->l);
last(root->r);
cout<<root->data;
}
}
int main()
{
while(cin>>s)
{
i=0;
struct node *root;
root=creat();
middle(root);
cout<<endl;
last(root);
cout<<endl;
}
return 0;
}
using namespace std;
struct node
{
char data;
struct node *l;
struct node *r;
};
int i;
string s;
struct node *creat()
{
struct node *root;
if(s[i++]==',')
root=NULL;
else
{
root=new node;
root->data=s[i-1];
root->l=creat();
root->r=creat();
}
return root;
};
void middle(struct node *root)
{
if(root)
{
middle(root->l);
cout<<root->data;
middle(root->r);
}
}
void last(struct node *root)
{
if(root)
{
last(root->l);
last(root->r);
cout<<root->data;
}
}
int main()
{
while(cin>>s)
{
i=0;
struct node *root;
root=creat();
middle(root);
cout<<endl;
last(root);
cout<<endl;
}
return 0;
}