PAT 1138 Postorder Traversal

本文介绍了一种从给定的二叉树先序和中序遍历序列中求得后序遍历序列的方法,特别关注如何快速找到后序序列的第一个数。通过递归构建后序遍历序列,并在输出首个数值后返回,实现了解决方案。

Suppose that all the keys in a binary tree are distinct positive integers. Given the preorder and inorder traversal sequences, you are supposed to output the first number of the postorder traversal sequence of the corresponding binary tree.

Input Specification:
Each input file contains one test case. For each case, the first line gives a positive integer N (≤ 50,000), the total number of nodes in the binary tree. The second line gives the preorder sequence and the third line gives the inorder sequence. All the numbers in a line are separated by a space.

Output Specification:
For each test case, print in one line the first number of the postorder traversal sequence of the corresponding binary tree.
在这里插入图片描述
题解:
题中给定先序序列和中序序列后,需要输出后序序列第一个数字,其实和以前遇到的前中序转后序的题应该一致,就是在post(左子树),post(左子树),输出值的语句后面加上一个return就可以了,这样的话输出第一个值就会跳出函数。
代码:

#include<iostream>
#include<vector>
using namespace std;
//vector<int> pre, in;
int pre[50009],in[50009];
vector<int> post;
void postorder(int preL,int preR,int inL,int inR){
	if(preL>preR||inL>inR) return;
	int k=inL;
	while(in[k]!=pre[preL]) k++;
	int numL=k-inL;
	postorder(preL+1,preL+numL,inL,inL+numL-1);//左子树 
	postorder(preL+numL+1,preR,inL+numL+1,inR);//右子树 
	post.push_back(pre[preL]);
}
int main(){
	int n;
	cin>>n;
	for(int i=1;i<=n;i++) cin>>pre[i];
	for(int i=1;i<=n;i++) cin>>in[i];
	postorder(1,n,1,n);
	cout<<post[0];
	return 0;
}

在这里插入图片描述
题中遇到的问题:

一定要看清楚题目,测试的时候结果出现段错误,刚开始以为数组越界,后来发现是把50000看成了5000.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值