清华数据结构PA5——真二叉树重构(Proper Rebuild)

题目:https://dsa.cs.tsinghua.edu.cn/oj/problem.shtml?id=1146

题目给出了真二叉树的前序和后序遍历,只需对两者进行对比,就能得到根节点和左右子树,然后进行递归即可。

#include<iostream>
using namespace std;

struct node
{
	int data;
	node* lchild;
	node* rchild;
	node() :
		lchild(NULL), rchild(NULL) { }
	node(int e, node* lchild = NULL, node* rchild = NULL) :
		data(e), lchild(lchild), rchild(rchild) { }
};
void rebuild(node* root, int* pre, int* post, int n)
{
	if (n < 2)
	{
		return;
	}
	int postleft, preright;
	for (int i = 0; i < n; i++)
	{
		if (pre[i] == post[n - 2])
		{
			preright = i;
			break;
		}
	}
	for (int i = 0; i < n; i++)
	{
		if (post[i] == pre[1])
		{
			postleft = i;
			break;
		}
	}
	root->lchild = new node(pre[1]);
	root->rchild = new node(post[n - 2]);
	rebuild(root->lchild, pre + 1, post, preright - 1);
	rebuild(root->rchild, pre + preright, post + postleft + 1, n - postleft - 2);
}

void trav(node* root) {
	if (!root) return;
	trav(root->lchild);
	printf("%d ", root->data);
	trav(root->rchild);
}

int main()
{
	int n;
	scanf("%d", &n);
	int* pre = new int[n];
	int* post = new int[n];
	for (int i = 0; i < n; i++)
	{
		scanf("%d", &pre[i]);
	}
	for (int i = 0; i < n; i++)
	{
		scanf("%d", &post[i]);
	}
	node* root = new node(pre[0]);
	rebuild(root, pre, post, n);
	trav(root);
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值