L2-004 这是二叉搜索树吗?

一棵二叉搜索树可被递归地定义为具有下列性质的二叉树:对于任一结点,

  • 其左子树中所有结点的键值小于该结点的键值;
  • 其右子树中所有结点的键值大于等于该结点的键值;
  • 其左右子树都是二叉搜索树。

所谓二叉搜索树的"镜像",即将所有结点的左右子树对换位置后所得到的树。

给定一个整数键值序列,现请你编写程序,判断这是否是对一棵二叉搜索树或其镜像进行前序遍历的结果。

输入格式:

输入的第一行给出正整数 N(≤1000)。随后一行给出 N 个整数键值,其间以空格分隔。

输出格式:

如果输入序列是对一棵二叉搜索树或其镜像进行前序遍历的结果,则首先在一行中输出 YES ,然后在下一行输出该树后序遍历的结果。数字间有 1 个空格,一行的首尾不得有多余空格。若答案是否,则输出 NO

输入样例 1:

复制代码
7
8 6 5 7 10 8 11

输出样例 1:

复制代码
YES
5 7 6 8 11 10 8

输入样例 2:

复制代码
7
8 10 11 8 6 7 5

输出样例 2:

复制代码
YES
11 8 10 7 5 6 8

输入样例 3:

复制代码
7
8 6 8 5 10 9 11

输出样例 3:

复制代码
NO

solution:

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define endl '\n'
vector<int>a;
vector<int>pre,premir,post,postmir;
#define null NULL
struct node
{
	int val;
	node *left;
	node *right;
};
void build(node* &t,int x)
{
	if(t==null)
	{
		t=new node();
		t->val=x;
		t->left=null;
		t->right=null;
		return;
	}
	if(t->val<=x)build(t->right,x);
	else build(t->left,x);
}
void preorder(node *t)
{
	if(t==null)return;
	pre.push_back(t->val);
	preorder(t->left);
	preorder(t->right);
}
void premirorder(node *t)
{
	if(t==null)return;
	premir.push_back(t->val);
	premirorder(t->right);
	premirorder(t->left);
}
void postorder(node *t)
{
	if(t==null)return;
	postorder(t->left);
	postorder(t->right);
	post.push_back(t->val);
}
void postmirorder(node *t)
{
	if(t==null)return;
	postmirorder(t->right);
	postmirorder(t->left);
	postmir.push_back(t->val);
}
int main()
{
	int n;cin>>n;
	node *root=null;
	for(int i=0;i<n;i++)
	{
		int x;cin>>x;
		a.push_back(x);
		build(root,x);
	}
	premirorder(root);
	preorder(root);
	if(a==pre)
	{
		cout<<"YES"<<endl;
		postorder(root);
		for(int i=0;i<post.size();i++)
		{
			if(i)cout<<' ';
			cout<<post[i];
		}
		cout<<endl;
	}
	else if(a==premir)
	{
		cout<<"YES"<<endl;
		postmirorder(root);
		for(int i=0;i<postmir.size();i++)
		{
			if(i)cout<<' ';
			cout<<postmir[i];
		}
		cout<<endl;
	}
	else cout<<"NO"<<endl;
}
相关推荐
weixin_395448915 分钟前
main.c_cursor_0202
前端·网络·算法
senijusene10 分钟前
数据结构与算法:队列与树形结构详细总结
开发语言·数据结构·算法
青桔柠薯片11 分钟前
数据结构:队列,二叉树
数据结构
杜家老五11 分钟前
综合实力与专业服务深度解析 2026北京网站制作公司六大优选
数据结构·算法·线性回归·启发式算法·模拟退火算法
寄存器漫游者34 分钟前
数据结构:带头节点单链表
c语言·数据结构
xu_yule36 分钟前
网络和Linux网络-13(高级IO+多路转接)五种IO模型+select编程
linux·网络·c++·select·i/o
2301_7657031442 分钟前
C++与自动驾驶系统
开发语言·c++·算法
Ll13045252981 小时前
Leetcode二叉树 part1
b树·算法·leetcode
轩情吖1 小时前
Qt的窗口(三)
c++·qt
鹿角片ljp1 小时前
力扣9.回文数-转字符双指针和反转数字
java·数据结构·算法