1138 Postorder Traversal(25分)

题目翻译:

给定二叉树的先序序列和中序序列后,需要输出后序序列第一个数字。

题解思路:

可以建树也可以不建树

代码:

不建树:

#include<bits/stdc++.h>
using namespace std;
int N, pre[50010], in[50010];
vector<int> p;

void build(int h1, int t1, int h2, int t2)
{
	if (h1 > t1 || h2 > t2) return;
	int i;
	for (i = h2;pre[h1] != in[i];i++);
	build(h1 + 1, i + h1 - h2, h2, i - 1);
	build(t1 - t2 + i + 1, t1, i + 1, t2);
	p.push_back(pre[h1]);
}

int main()
{
	cin >> N;
	for (int i = 0;i < N;i++)cin >> pre[i];
	for (int i = 0;i < N;i++)cin >> in[i];
	build(0, N - 1, 0, N - 1);
	cout << p[0];
}

建树:

#include<bits/stdc++.h>
using namespace std;
int N, pre[50010], in[50010], tag = 0, cnt = 0;
struct node {
	int l = -1, r = -1, val = 0;
}v[50010];

int build(int h1, int t1, int h2, int t2)
{
	if (h1 > t1) return -1;
	int root = cnt++, i;
	v[root].val = pre[h1];
	for (i = h2;pre[h1] != in[i];i++);
	v[root].l = build(h1 + 1, i + h1 - h2, h2, i - 1);
	v[root].r = build(t1 - t2 + i + 1, t1, i + 1, t2);
	return root;
}

void post1(int root)
{
	if (root==-1) return;
	post1(v[root].l);
	post1(v[root].r);
	if (tag) return;
	cout << v[root].val;
	tag++;
}

int main()
{
	cin >> N;
	for (int i = 0;i < N;i++)cin >> pre[i];
	for (int i = 0;i < N;i++)cin >> in[i];
	int root = build(0, N - 1, 0, N - 1);
	post1(root);
}

坑点:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值