pat 1119. Pre- and Post-order Traversals (30)

12 篇文章 0 订阅

https://www.patest.cn/contests/pat-a-practise/1119


#include <cstdio>
typedef struct node {
	int v;
	struct node * left, *right;
	node(int x) : left(NULL), right(NULL)
	{
		v = x;
	}
}Node;

bool build(Node * &root, int* pre, int*  post,int len) {
	if (len == 0) return true;
	root = new Node(*pre);
	pre++; post[len - 1] = 0;
	//find the sub tree
	int count = 0;
	bool luniq = false, runiq = false;
	while (*pre) {
		int i=0, newPre[31], newPost[31];
		while (pre[0] != post[i] ) {
			newPre[i] = pre[i];
			newPost[i] = post[i];
			i++;
		}
		//Add the last element.
		newPre[i] = pre[i];
		newPost[i] = post[i];
		newPre[i + 1] = 0;
		newPost[i + 1] = 0;
		pre = pre + i + 1;
		post = post + i + 1;
		count++;
		if (root->left == NULL) luniq =  build(root->left, newPre, newPost, i+1);
		else runiq = build(root->right, newPre, newPost, i+1);
	}
	return count==0 ||(luniq && runiq);
}

bool first = true;
void inOrder(Node * root) {
	if (root == NULL) return;
	inOrder(root->left);
	if (first) {
		printf("%d", root->v);
		first = false;
	}
	else {
		printf(" %d", root->v);
	}
	inOrder(root->right);
}
int main()
{
	int n;
	int pre[31], post[31];
	scanf("%d", &n);
	for (int i = 0; i < n; i++)
	{
		scanf("%d", &pre[i]);
	}
	for (int i = 0; i < n; i++)
	{
		scanf("%d", &post[i]);
	}
	pre[n] = post[n] = 0;
	Node *root = NULL;
	bool uniq = build(root, pre, post, n);
	if (uniq) printf("Yes\n");
	else printf("No\n");
	inOrder(root);
	printf("\n");
    return 0;
}


另附参考了: http://www.liuchuo.net/archives/2484

#include <cstdio>
#include <vector>
using namespace std;
vector<int> ans;
int *pre, *post, unique = 1;

int findFromPre (int x, int l, int r) {
	for (int i = l; i <= r; i++) {
		if (x == pre[i]) {
			return i;
		}
	}
	return -1;
}

void setIn (int prel, int prer, int postl, int postr) {
	if (prel == prer) {
		ans.push_back(pre[prel]);
		return;
	}
	if (pre[prel] == post[postr]) {
		int x = findFromPre(post[postr - 1], prel + 1, prer);
		if (x - prel > 1) {
			setIn(prel + 1, x - 1, postl, postl + x - prel - 2);
			ans.push_back(post[postr]);
			setIn(x, prer, postl + x - prel - 2 + 1, postr - 1);
		} else {
			unique = 0;
			ans.push_back(post[postr]);
			setIn(x, prer, postl + x - prel - 2 + 1, postr - 1);
		}
	} 
}

int main() {
	int n = 0;
	scanf("%d", &n);
	pre = new int [n];
	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]);
	}
	setIn(0, n - 1, 0, n - 1);
	printf("%s\n", unique ? "Yes" : "No");
	printf("%d", ans[0]);
	for (int i = 1; i < ans.size(); i++) {
		printf(" %d", ans[i]);
	}
	printf("\n");
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值