UVa 536 二叉树重建(Tree Recovery)

输入一棵树的先序遍历和中序遍历,输出后序遍历序列。

已知中序和后续 推前序,可以看我的另一个文章
https://blog.csdn.net/Inuyasha__/article/details/99756631

要点:

  • 中序遍历是 树的左子树 + 树的根节点 + 树的右子树
  • 前序序遍历是 树的根节点 + 树的左子树 + 树的右子树
  • 换句话来说,有了前序遍历就有了根,有了根通过中序遍历,就有了左右子树,根据长度选出后续遍历的左右子树,然后这个选出来的左右子树最有变又是根,然后又去中序遍历找…………这是一个递归的过程
#include<bits/stdc++.h>
using namespace std;

struct Node {
	char ch;
	Node *left, *right;
};

string pre, in;

Node* createNode(int preL, int preR, int inL, int inR) {
	if (preL > preR) return NULL;
	Node* root = new Node();
	char ch = pre[preL];
	root->ch = ch;
	int i;
	for (i = inL; i <= inR; i++) {
		if (ch == in[i])
			break;
	}
	int cnt = i - inL;
	root->left = createNode(preL + 1, preL + cnt, inL, i - 1);
	root->right = createNode(preL + cnt + 1, preR, i + 1, inR);
	return root;
}

void postOrder(Node* root) {
	if (root == NULL) return;
	postOrder(root->left);
	postOrder(root->right);
	cout << root->ch;
}

int main() {
	//freopen("in.txt", "r", stdin);
	//freopen("out.txt", "w", stdout);
	while (cin >> pre >> in) {
		Node* root = createNode(0, pre.size() - 1, 0, in.size() - 1);
		postOrder(root);
		cout << endl;
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值