传送门:http://acm.hdu.edu.cn/showproblem.php?pid=3791

中文题不说题意。

建立完二叉搜索树后进行前序遍历或者后序遍历判断是否一样就可以了。

跟这次的作业第一题一模一样,输出输入改下就好

水的半死。

另外一题我以为是一定要一遍读入一边输出,被骗了,最后一起输出就好。等星期一再发那题的题解。

#include<cstdio>
#include<cstring>
int cur;
struct node
{
char c;
node *left,*right;
node() { left=right=NULL;}
}; struct Tree
{
node *root;
Tree() { root=NULL;} void insert(char x)
{
if(root==NULL)
{
root=new node;
root->left=root->right=NULL;
root->c=x;
return;
} node *p=root;
node *temp=new node;
temp->c=x;
while(true)
{
if(p->c > x) //left;
{
if(p->left!=NULL)
p=p->left;
else
{
p->left=temp;
return;
}
}
else if(p->c < x) //right
{
if(p->right!=NULL)
p=p->right;
else
{
p->right=temp;
return;
}
}
}
} void order(node *root,char *s) //后续前序均可,但中序遍历不可以。
{
if(root==NULL)
return; order(root->left,s);
order(root->right,s);
s[cur++]=root->c;
} }tree; int main()
{
int n;
while(scanf("%d",&n),n)
{
char s[12];
scanf("%s",s);
int len=strlen(s),i;
for(i=0;i<len;i++)
tree.insert(s[i]); char cmp[12];
char tcmp[12];
cur=0;
tree.order(tree.root,cmp);
cmp[cur]='\0';
for(i=0;i<n;i++)
{
cur=0;
tree.root=NULL;
scanf("%s",s);
int j;
for(j=0;j<len;j++)
tree.insert(s[j]); tree.order(tree.root,tcmp);
tcmp[cur]='\0';
printf("%s\n",(strcmp(cmp,tcmp)==0 ? "YES":"NO"));
}
tree.root=NULL;
}
}

附上这次作业原题:

数据结构与算法实验题 10.2 小明

★实验任务 

小明今天刚刚学会了搜索二叉树,不同的数字序列可能会得到同一棵搜索二叉树。为了更好的复习。小明先写一个数字序列,接着又写了 n 个数字序列,,他想知道这 n 个序列是否与第一个序列同属于一棵搜索二叉树,但他现在无法判断它们是否是同一棵搜索二叉树,所以他请你帮忙 

★数据输入 

 开始一个数 n,(1<=n<=20) 表示有 n 个需要判断, 接下去一行是一个序列,序列长度小于 10,包含(0~9)的数字,没有重复数字,根据这个序列可以构造出一颗二叉搜索树。 接下去的 n 行有 n 个序列,每个序列格式跟第一个序列一样,请判断这两个序列是否能组成同一颗二叉搜索树。 

★数据输出 

 对于这 n 个序列,如果与第一个序列是同一棵搜索二叉树,输出“Yes”,否则输出“No”。

就是上面的代码改改输入和输出的Yes和No和HDU那题不一样(HDU是YES和NO)

#include<cstdio>
#include<cstring>
int cur;
struct node
{
char c;
node *left,*right;
node() { left=right=NULL;}
}; struct Tree
{
node *root;
Tree() { root=NULL;} void insert(char x)
{
if(root==NULL)
{
root=new node;
root->left=root->right=NULL;
root->c=x;
return;
} node *p=root;
node *temp=new node;
temp->c=x;
while(true)
{
if(p->c > x) //left;
{
if(p->left!=NULL)
p=p->left;
else
{
p->left=temp;
return;
}
}
else if(p->c < x) //right
{
if(p->right!=NULL)
p=p->right;
else
{
p->right=temp;
return;
}
}
}
} void order(node *root,char *s) //后续前序均可,但中序遍历不可以。
{
if(root==NULL)
return; order(root->left,s);
order(root->right,s);
s[cur++]=root->c;
} }tree; int main()
{
int n;
scanf("%d",&n); char s[12];
scanf("%s",s);
int len=strlen(s),i;
for(i=0;i<len;i++)
tree.insert(s[i]); char cmp[12];
char tcmp[12];
cur=0;
tree.order(tree.root,cmp);
cmp[cur]='\0';
for(i=0;i<n;i++)
{
cur=0;
tree.root=NULL;
scanf("%s",s);
int j;
for(j=0;j<len;j++)
tree.insert(s[j]); tree.order(tree.root,tcmp);
tcmp[cur]='\0';
printf("%s\n",(strcmp(cmp,tcmp)==0 ? "Yes":"No"));
}
tree.root=NULL; }

HDU 3791 二叉搜索树 (数据结构与算法实验题 10.2 小明) BST的更多相关文章

  1. hdu 3791 二叉搜索树(数据结构)

    二叉搜索树 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submi ...

  2. hdu 3791:二叉搜索树(数据结构,二叉搜索树 BST)

    二叉搜索树 Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other) Total Submiss ...

  3. HDU 3791 二叉搜索树

    二叉搜索树 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submi ...

  4. HDU 3791 二叉搜索树 题解

    Problem Description 推断两序列是否为同一二叉搜索树序列   Input 開始一个数n,(1<=n<=20) 表示有n个须要推断,n= 0 的时候输入结束. 接下去一行是 ...

  5. HDU 3791二叉搜索树解题(解题报告)

    1.题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=3791 2.参考解题 http://blog.csdn.net/u013447865/articl ...

  6. 70 数组的Kmin算法和二叉搜索树的Kmin算法对比

    [本文链接] http://www.cnblogs.com/hellogiser/p/kmin-of-array-vs-kmin-of-bst.html [分析] 数组的Kmin算法和二叉搜索树的Km ...

  7. 数据结构与算法实验题 4.2 Who is the strongest

    数据结构与算法实验题 4.2 Who is the strongest ★实验任务 在神奇的魔法世界,召唤师召唤了一群的魁偶.这些魁偶排成一排,每个魁偶都有一个 战斗值.现在该召唤师有一个技能,该技能 ...

  8. 数据结构与算法实验题 6.1 s_sin’s bonus

    数据结构与算法实验题 6.1 s_sin's bonus ★实验任务 正如你所知道的 s_sin 是一个非常贪玩的人 QAQ(如果你非常讨厌他请直接从第二段开 始看),并且令人感到非常遗憾的是,他是一 ...

  9. 数据结构与算法实验题 9.1 K 歌 DFS+剪枝

    数据结构与算法实验题 K 歌 ★实验任务 3* n 个人(标号1~ 3 * n )分成 n 组 K 歌.有 m 个 3 人组合,每个组合都对应一个分数,你能算出最大能够得到的总分数么? ★数据输入 输 ...

随机推荐

  1. 如何在win10上同时安装python2和python3

    哎,其实本人已经用惯了python2,听说python3的语法有很多不一样的地方,那我之前写的算法改起来岂不是日了狗了吗?所以一直没改用python3.但是谷歌的那个TensorFlow,在windo ...

  2. IOS越狱开发错误解决

      Questions: haseScriptExecution Run\ Script /Users/jun/Library/Developer/Xcode/DerivedData/ButtonMa ...

  3. Android学习笔记进阶19之给图片加边框

    //设置颜色 public void setColour(int color){ co = color; } //设置边框宽度 public void setBorderWidth(int width ...

  4. golang passing an array to a function

    package main import “fmt” func fp(a *[]int) { fmt.Println(a) } func main() { ; i < ; i++ { fp(&am ...

  5. golang标准包中文手册

    golang标准包中文手册 http://files.cnblogs.com/files/rojas/liudiwu-pkgdoc-master.zip

  6. CISP/CISA 每日一题 三

    CISA 每日一题(答) 测试应用控制的有效性包括: 分析计算机应用程序.测试计算机应用程序控制.选择和监控数据处理事务. 测试应用系统技术: 快照.映射.追踪和标识.测试数据(在真实的系统中的仿真交 ...

  7. POJ Oulipo(KMP模板题)

    题意:找出模板在文本串中出现的次数 思路:KMP模板题 #include<cstdio> #include<cstring> #include<cmath> #in ...

  8. Flask项目之手机端租房网站的实战开发(十一)

    说明:该篇博客是博主一字一码编写的,实属不易,请尊重原创,谢谢大家! 接着上一篇博客继续往下写 :https://blog.csdn.net/qq_41782425/article/details/8 ...

  9. 大家好,我是FansUnion,雷文

    友情提示 以下是我在CSDN Code讨论组的自我介绍. 很多CSDN网友,总是重复地问我一些比较常见的问题. 我已经开始机械性地回答网友的问题了. 自我介绍 我的CSDN等媒体的ID,大多带有Fan ...

  10. Maven学习总结(15)——Maven 项目中pom.xml详解

    <project xmlns="http://maven.apache.org/POM/4.0.0"  xmlns:xsi="http://www.w3.org/2 ...