码迷,mamicode.com
首页 > 其他好文 > 详细

UVa 536 Tree Recovery

时间:2015-10-14 11:55:33      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

题目:

  一直树的前序遍历和中序遍历,求后序遍历。

分析:

  递归.对于每个子树,前根序第一个是根,找到它在中根序的位置,就能确定左右子树,然后递归求解。

代码:

  

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;
char tq[27],tz[27],th[27];
void build(int p1,int p2,int q1,int q2,int d)
{
if(p1>p2)
return;
for(d=q1;tq[p1]!=tz[d];++d);
build(p1+1,p1-q1+d,q1,d-1,0);
build(p1+1+d-q1,p2,d+1,q2,0);
cout<<tz[d];
}
int main()
{
while(cin>>tq>>tz)
{
int l=strlen(tq)-1;
build(0,l,0,l,0);
cout<<endl;
}
}

UVa 536 Tree Recovery

标签:

原文地址:http://www.cnblogs.com/137033036-wjl/p/4876621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!