UVa 10701 - Pre, in and post

题目:已知树的前根序,中根序遍历转化成后根序遍历。

分析:递归,DS。依据定义递归求解就可以。

前根序:根,左子树,右子树;

中根序:左子树,根,右子树;

每次,找到根、左子树、右子树,然后分别递归左子树,右子树,输出根就可以。

说明:当时进入ACM实验室的第一个题目。

#include <iostream>
#include <cstdlib>
#include <cstdio> using namespace std; char Per[55],In[55]; void post(int a, int b, int c, int d)
{
if (a>b) return;
int r = c;
while (In[r] != Per[a]) r ++;
post(a+1, a+r-c, c, r-1);
post(a+r-c+1, b, r+1, d);
printf("%c",Per[a]);
} int main()
{
int n,m;
while (~scanf("%d",&n))
for (int i = 0 ; i < n ; ++ i) {
scanf("%d%s%s",&m,Per,In);
post(0,m-1,0,m-1);
printf("\n");
}
return 0;
}
上一篇:Python之美[从菜鸟到高手]--一步一步动手给Python写扩展(异常处理和引用计数)


下一篇:20165219 2017-2018-2《Java程序设计》结对编程一 第一周总结