【NOIP2001】【Luogu1030】求先序排列
【摘要】
problem
solution
codes
#include<stdio.h>
#include<string.h>
#define maxn 10
#define max...
problem
solution
codes
#include<stdio.h>
#include<string.h>
#define maxn 10
#define maxv maxn*30
char in[maxn], post[maxn];
char lch[maxv], rch[maxv];
int build(int l1, int r1, int l2, int r2){
if(l1 > r1)return 0;
char root = post[r2];
int p = l1; while(in[p] != root)p++;
int cnt = p-l1;
lch[root] = build(l1,p-1,l2,l2+cnt-1);
rch[root] = build(p+1,r1,l2+cnt,r2-1);
return (int)root;
}
void dfs(char root){
printf("%c",root);
if(lch[root])dfs(lch[root]);
if(rch[root])dfs(rch[root]);
}
int main(){
scanf("%s%s",in+1,post+1);
int n = strlen(in+1);
build(1,n,1,n);
dfs(post[n]);
return 0;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/80601386
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)