博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT L2-006 树的遍历
阅读量:4455 次
发布时间:2019-06-07

本文共 1236 字,大约阅读时间需要 4 分钟。

 

给定一棵二叉树的后序遍历和中序遍历,请你输出其层序遍历的序列。这里假设键值都是互不相等的正整数。

输入格式:

输入第一行给出一个正整数N(≤),是二叉树中结点的个数。第二行给出其后序遍历序列。第三行给出其中序遍历序列。数字间以空格分隔。

输出格式:

在一行中输出该树的层序遍历的序列。数字间以1个空格分隔,行首尾不得有多余空格。

输入样例:

72 3 1 5 7 6 41 2 3 4 5 6 7

输出样例:

4 1 6 3 5 7 2

代码:

#include 
using namespace std;const int maxn = 1e5 + 10;int N;vector
post, in;vector
level(maxn, -1);void levelorder(int inl, int inr, int root, int index) { if(inl > inr) return ; int i = inl; while(i < inr && in[i] != post[root]) i ++; level[index] = post[root]; levelorder(inl, i - 1, root - inr + i - 1, index * 2 + 1); levelorder(i + 1, inr, root - 1,index * 2 + 2);}int main() { scanf("%d", &N); post.resize(N), in.resize(N); for(int i = 0; i < N; i ++) scanf("%d", &post[i]); for(int i = 0; i < N; i ++) scanf("%d", &in[i]); levelorder(0, N - 1, N - 1, 0); int cnt = 0; for(int i = 0; i < maxn; i ++) { if(level[i] != -1 && cnt != N - 1) { printf("%d ", level[i]); cnt ++; } else if(level[i] != -1 && cnt == N - 1) { printf("%d", level[i]); break; } } return 0;}

  植树节快落

FH

转载于:https://www.cnblogs.com/zlrrrr/p/10520202.html

你可能感兴趣的文章
百度2011实习生招聘笔试题
查看>>
机器学习之SVD奇异值
查看>>
android开发 装饰者模式
查看>>
Access数据库SQL注入(Access SQL Injection)
查看>>
I Hate It
查看>>
usaco 2.1 sort3...想法题...
查看>>
【转】算法的流程图表示
查看>>
jquery .filter()过滤器
查看>>
视图中增加一个自动增加的字段
查看>>
基于axis2的webservice和android简单的本地数据交互(上)
查看>>
[.Net Core] 简单使用 Mvc 内置的 Ioc
查看>>
ef 多条数据插入处理方案(据说还有更好的)
查看>>
BigDecimal 学习比较
查看>>
反演+分块套分块——bzoj2154
查看>>
任务调度~Quartz.net实现简单的任务调试
查看>>
第三次作业——for 语句及分支结构else-if
查看>>
央行紧急通知:你在用的这种支付方式将有重大变化
查看>>
数据库SQL语句学习--view
查看>>
Balsamiq Mockups
查看>>
分区表损坏后的重建
查看>>