博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 3791 二叉搜索树 题解
阅读量:6088 次
发布时间:2019-06-20

本文共 1255 字,大约阅读时间需要 4 分钟。

Problem Description
推断两序列是否为同一二叉搜索树序列
 

Input
開始一个数n,(1<=n<=20) 表示有n个须要推断,n= 0 的时候输入结束。
接下去一行是一个序列,序列长度小于10,包括(0~9)的数字,没有反复数字,依据这个序列能够构造出一颗二叉搜索树。
接下去的n行有n个序列,每一个序列格式跟第一个序列一样,请推断这两个序列能否组成同一颗二叉搜索树。
 

Output
假设序列同样则输出YES,否则输出NO
 

Sample Input
 
2 567432 543267 576342 0
 

Sample Output
 
YES NO

一条浙大考研上机题目。考二叉树构建。

直接使用静态数组过了,由于数据不大。

#include 
#include
#include
using std::string;using std::cin;const int SIZE = (1<<9)+1;char Tree[SIZE];char secTree[SIZE];string root, child;void constrctTree(char T[], char a, int node = 0){ if (T[node] == 'b') { T[node] = a; return ; } if (a < T[node]) constrctTree(T, a, node<<1|1); else constrctTree(T, a, (node+1)<<1);}int main(){ int n; secTree[1<<9] = '\0'; Tree[1<<9] = '\0'; while (scanf("%d", &n) && n != 0) { for (int i = 0; i < 1<<9; i++) Tree[i] = 'b'; cin>>root; for (int i = 0; i < (int)root.size(); i++) { constrctTree(Tree, root[i]); } for (int i = 0; i < n; i++) { cin>>child; if (root.size() != child.size()) puts("NO"); else { for (int j = 0; j < 1<<9; j++) secTree[j] = 'b'; for (int i = 0; i < (int)child.size(); i++) { constrctTree(secTree, child[i]); } if (strcmp(Tree, secTree) == 0) puts("YES"); else puts("NO"); } } } return 0;}

转载地址:http://ntpwa.baihongyu.com/

你可能感兴趣的文章
微软发布 .NET for Apache Spark 首个预览版
查看>>
Fedora 32 将移除 Python 2 及其软件包
查看>>
Java_异常_02_java.lang.NoClassDefFoundError: org/apache/log4j/Level
查看>>
在线表格 x-spreadsheet 1.0.16 发布
查看>>
Windows IIS服务器建站/网站配置全图文流程(新手必备!) 一条龙
查看>>
[Git日记](1)Git安装
查看>>
Hadoop笔试题一
查看>>
微信小程序之生成图片分享
查看>>
Java微信公众平台开发_04_自定义菜单
查看>>
Python网络编程(进程通信、信号、线程锁、多线程)
查看>>
C#/VB.NET设置Excel表格背景色
查看>>
《Kotin 极简教程》第10章 Kotlin与Java互操作
查看>>
混合云存储网关云上部署版本介绍
查看>>
epoll和select
查看>>
网络编程懒人入门(八):手把手教你写基于TCP的Socket长连接
查看>>
LeetCode 145 Binary Tree Postorder Traversal(二叉树的后续遍历)+(二叉树、迭代)
查看>>
pickle和cPickle:Python对象的序列化(上)
查看>>
二叉排序树实现(C++封装)
查看>>
Microsoft Edge,谷歌浏览器新增 Scroll to Text 功能
查看>>
elasticsearch
查看>>