1043 Is It a Binary Search Tree (25 分)
 

A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:

  • The left subtree of a node contains only nodes with keys less than the node's key.
  • The right subtree of a node contains only nodes with keys greater than or equal to the node's key.
  • Both the left and right subtrees must also be binary search trees.

If we swap the left and right subtrees of every node, then the resulting tree is called the Mirror Image of a BST.

Now given a sequence of integer keys, you are supposed to tell if it is the preorder traversal sequence of a BST or the mirror image of a BST.

Input Specification:

Each input file contains one test case. For each case, the first line contains a positive integer N (≤). Then N integer keys are given in the next line. All the numbers in a line are separated by a space.

Output Specification:

For each test case, first print in a line YES if the sequence is the preorder traversal sequence of a BST or the mirror image of a BST, or NO if not. Then if the answer is YES, print in the next line the postorder traversal sequence of that tree. All the numbers in a line must be separated by a space, and there must be no extra space at the end of the line.

Sample Input 1:

7
8 6 5 7 10 8 11

Sample Output 1:

YES
5 7 6 8 11 10 8

Sample Input 2:

7
8 10 11 8 6 7 5

Sample Output 2:

YES
11 8 10 7 5 6 8

Sample Input 3:

7
8 6 8 5 10 9 11

Sample Output 3:

NO

题意:

题目读不懂,看了别人的题解才知道。

题目我纠结了好久才明白是什么意思
给出一个序列,利用这个数建立二叉搜索树

然后问 问这个序列是不是这个二叉搜索树的先序或者是这个二叉树镜像树的先序
如果是 那么就输出Yes 并且输出这个树的后序
如果不是的话就直接输出No

怎么说? 我先利用这个东西建立二叉搜索树...然后求出二叉搜索树的先序 判断是否和序列一样 若是一样则输出后序

或者判断是否和二叉搜索镜像树一样 若是一样则输出后序

二叉镜像搜索树的先序其实就是先根再右再左

后序就是先右再左再根  没有其他了  主要就是题目意思的问题............

题解:

链表建树,一会儿*,一会&,不熟练

分析:

  1.对输入的一段序列生成一棵二叉搜索树

  2.判断:

      a.此二叉树的先序遍历和输入的序列相等,则输出此二叉树的后序遍历序列

      b.在 a 不成立的情况下,求这棵二叉树的镜像先序遍历序列,若和输入的序列相等,则输出二叉树的镜像后序遍历序列

      c.以上都不成立时,输出 "NO"

AC代码:

#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<map>
#include<string>
#include<cstring>
using namespace std;
struct node{
int v;
node *l;//l指针(是个结构体的指针)指向哪个地址
node *r;
};
vector<int>pre,post,mpre,mpost,ori;
int n;
void insert(node* &root,int val){//建树 &不能忘了
if(root==NULL){
root = new node;
root->v=val;
root->l=root->r=NULL;
return;
}else if(val<root->v){
insert(root->l,val);
}else{
insert(root->r,val);
}
}
void preorder(node *root){//先序
if(root==NULL){
return;
}else{
pre.push_back(root->v);
preorder(root->l);
preorder(root->r);
}
}
void postorder(node *root){//后序
if(root==NULL){
return;
}else{
postorder(root->l);
postorder(root->r);
post.push_back(root->v);
}
}
void mpreorder(node *root){//镜像先序
if(root==NULL){
return;
}else{
mpre.push_back(root->v);
mpreorder(root->r);
mpreorder(root->l);
}
}
void mpostorder(node *root){//镜像后序
if(root==NULL){
return;
}else{
mpostorder(root->r);
mpostorder(root->l);
mpost.push_back(root->v);
}
}
int main()
{
int x;
cin>>n;
node *root=NULL;//指针root指向null
for(int i=;i<=n;i++)
{
cin>>x;
ori.push_back(x);
insert(root,x);
}
preorder(root);//前序遍历
mpreorder(root);//镜像前序遍历
if(pre==ori){
cout<<"YES\n";
postorder(root);//后序遍历
for(int i=;i<post.size();i++){
cout<<post[i];
if(i!=post.size()-) cout<<" ";
}
}
else if(mpre==ori){
cout<<"YES\n";
mpostorder(root);//镜像后序遍历
for(int i=;i<mpost.size();i++){
cout<<mpost[i];
if(i!=mpost.size()-) cout<<" ";
}
}else{
cout<<"NO\n";
}
return ;
}

PAT 甲级 1043 Is It a Binary Search Tree (25 分)(链表建树前序后序遍历)*不会用链表建树 *看不懂题的更多相关文章

  1. PAT 甲级 1043 Is It a Binary Search Tree

    https://pintia.cn/problem-sets/994805342720868352/problems/994805440976633856 A Binary Search Tree ( ...

  2. PAT Advanced 1043 Is It a Binary Search Tree (25) [⼆叉查找树BST]

    题目 A Binary Search Tree (BST) is recursively defined as a binary tree which has the following proper ...

  3. PAT 1043 Is It a Binary Search Tree (25分) 由前序遍历得到二叉搜索树的后序遍历

    题目 A Binary Search Tree (BST) is recursively defined as a binary tree which has the following proper ...

  4. 1043 Is It a Binary Search Tree (25分)(树的插入)

    A Binary Search Tree (BST) is recursively defined as a binary tree which has the following propertie ...

  5. 【PAT甲级】1043 Is It a Binary Search Tree (25 分)(判断是否为BST的先序遍历并输出后序遍历)

    题意: 输入一个正整数N(<=1000),接下来输入N个点的序号.如果刚才输入的序列是一颗二叉搜索树或它的镜像(中心翻转180°)的先序遍历,那么输出YES并输出它的后序遍历,否则输出NO. t ...

  6. 【PAT甲级】1099 Build A Binary Search Tree (30 分)

    题意: 输入一个正整数N(<=100),接着输入N行每行包括0~N-1结点的左右子结点,接着输入一行N个数表示数的结点值.输出这颗二叉排序树的层次遍历. AAAAAccepted code: # ...

  7. 【PAT】1043 Is It a Binary Search Tree(25 分)

    1043 Is It a Binary Search Tree(25 分) A Binary Search Tree (BST) is recursively defined as a binary ...

  8. PAT甲级——A1043 Is It a Binary Search Tree

    A Binary Search Tree (BST) is recursively defined as a binary tree which has the following propertie ...

  9. 1064 Complete Binary Search Tree (30分)(已知中序输出层序遍历)

    A Binary Search Tree (BST) is recursively defined as a binary tree which has the following propertie ...

随机推荐

  1. 为什么要设置HTTP timeout?

    先看一个不设置timeout造成的线上事故. 一次线上事故 有一次生产上的一个服务出了点故障,一个原本每5分钟执行一次的定时任务突然不执行了.第一反应是任务执行报错,查看日志,却没有找到任何异常报错信 ...

  2. 搭建Git服务器环境----Git hooks代码自动部署

    引言:自己想搭一套git的服务端环境,不想用github码云等.经多方资料整合,实验总结,以下是亲测有效的方式.可用于公司日常开发 一.搭建Git环境 ① 安装 Git Linux 做为服务器端系统, ...

  3. TDOA基站 之 时间同步

    TDOA 和 TWR相比,标签可以用最少的信息来定位,但是对于基站要求很高,需要“时间同步”. 这也是TDOA算法的核心部分,很多套件对此讳莫如深,希望能沟通过本文使读者能对TODA同步有一定初步了解 ...

  4. 42、扩展原理-ApplicationListener原理

    42.扩展原理-ApplicationListener原理 有三个事件 ContextRefreshedEvent.Test_Ext$1[source=我发布了一个事件].ContextClosedE ...

  5. hive on spark (spark2.0.0 hive2.3.3)

    hive on spark真的很折腾人啊!!!!!!! 一.软件准备阶段 maven3.3.9 spark2.0.0 hive2.3.3 hadoop2.7.6 二.下载源码spark2.0.0,编译 ...

  6. jQuery相关方法8-----解绑事件

    一.解绑事件方法unbind() 用什么方式绑定的事件,最好用对应的方式解绑事件 unbind("事件名字")括号里写上事件名字,就会解除这个事件 unbind()括号里没有参数就 ...

  7. intelij idea 2018 license server

    http://www.cnblogs.com/jin-zhe/p/9267912.html

  8. git submodule subtree常用指令

    submodule 官方文档 添加 git submodule add -b master git@git.xxx:xxx/xxx.git src/xxx 删除 git submodule deini ...

  9. 4)抽象方法不能为private,final或者static,为什么?

    抽象方法的最实质的意 义在于被未来的子类覆盖实现掉.它自己是个空方法.private的实质意义在于本类其他方法调用它.你自己是个空方法,别人调用你有什么用?所以 abstract和private在一起 ...

  10. android studio的安装信息

    默认是会下载sdk等文件的 Preparing "Install Android SDK Tools (revision: 26.1.1)". Downloading https: ...