分析:分别递归root的左子树和右子树,判断当前结点是否是叶子结点(为操作数),如果是直接输出,否则递归其左子树和右子树。
#include<stdio.h>
#include<string.h>
typedef struct Tree{
char data[11];
int l, r;
}Tree;
Tree tree[30];
int vis[30];
int isLeaf(int root){
if(root == -1) return 0;
if(tree[root].l == -1 && tree[root].r == -1) return 1;
return 0;
}
void InOrderT(int root){
if(root == -1) return ;
if(!isLeaf(root)){
printf("(");
if(tree[root].l != -1) InOrderT(tree[root].l);
printf("%s", tree[root].data);
if(tree[root].r != -1) InOrderT(tree[root].r);
printf(")");
}
else {
printf("%s", tree[root].data);
}
}
int main(){
freopen("in.txt", "r", stdin);
int n, i, root;
scanf("%d", &n);
for(i = 1; i<=n; i++){
scanf("%s %d %d", tree[i].data, &tree[i].l, &tree[i].r);
if(tree[i].l != -1) vis[tree[i].l] = 1;
if(tree[i].r != -1) vis[tree[i].r] = 1;
}
for(i = 1; i<=n; i++)
if(!vis[i]) root = i;
if(tree[root].l != -1) InOrderT(tree[root].l);
printf("%s", tree[root].data);
if(tree[root].r != -1) InOrderT(tree[root].r);
return 0;
}