JDOJ-重建二叉树

这是一道面试题,可以说是数据结构中的基础题了,由先序遍历以及中序遍历生成一棵树,然后输出后序遍历。

一个递归函数传递5个参数,顶点编号,先序左右区间,中序左右区间,每次进行区间长度判定,当只有一个元素就进行元素判定,递归构树。

代码如下:

#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#define MAXN 1005
using namespace std;int N, p[MAXN], m[MAXN], idx;struct Node
{int l, r, val;    
}e[MAXN];int init()
{++idx;e[idx].l = e[idx].r = 0;return idx;    
}bool build(int rt, int l, int r, int ll, int rr)
{ // l, r 表示先序的区间,ll, rr表示中序的区间 int pos = -1;e[rt].val = p[l]; // 先序确定根节点if (r - l != rr - ll) return false;if (l == r) {if (p[l] == m[ll]) return true;else return false;}for (int i = ll; i <= rr; ++i) { // 中序寻根 if (m[i] == p[l]) {pos = i;break;}}if (pos == -1) return false;if (pos == ll) { // 没有左孩子e[rt].r = init();return build(e[rt].r, l+1, r, ll+1, rr);}else if (pos == rr) { // 没有右孩子 e[rt].l = init();return build(e[rt].l, l+1, r, ll, rr-1);}else {int a, b;e[rt].l = init();a = build(e[rt].l, l+1, l+(pos-ll), ll, pos-1);e[rt].r = init();b = build(e[rt].r, l+(pos-ll)+1, r, pos+1, rr);return a && b;}
}void print(int p)
{if (e[p].l) {print(e[p].l);    }if (e[p].r) {print(e[p].r);    }printf("%d ", e[p].val);
}int main()
{int rt;while (scanf("%d", &N) == 1) {idx = -1;rt = init();for (int i = 1; i <= N; ++i) {scanf("%d", &p[i]);}for (int i = 1; i <= N; ++i) {scanf("%d", &m[i]);}if (build(rt, 1, N, 1, N)) {print(rt);puts("");}else puts("No");}return 0;
}

转载于:https://www.cnblogs.com/Lyush/archive/2012/08/24/2653573.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377261.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

des算法密码多长_密码学中的多个DES

des算法密码多长This is a DES that was susceptible to attacks due to tremendous advances in computer hardware in cryptography. Hence, it was a very complex or competent algorithm it would be feasible to reuse DES rather than writing an of cryptography. 由于…

《MySQL——索引笔记》

目录回表覆盖索引最左前缀原则联合索引的时候&#xff0c;如何安排索引内的字段顺序&#xff1f;索引下推重建索引问题联合主键索引和 InnoDB 索引组织表问题in与between的区别回表 回到主键索引树搜索的过程&#xff0c;我们称为回表。 覆盖索引 覆盖索引就是在这次的查询中…

计算凸多边形面积的算法

1. 思路&#xff1a; 可以将凸多边形&#xff08;边数n > 3&#xff09;划分为 (n - 2) 个三角形&#xff0c;分别运用向量叉积计算每个三角形的面积&#xff0c;最后累加各个三角形的面积就是多边形的面积。 2. 求多边形面积的算法模板&#xff1a;   定义点的结构体 str…

Windows CE开发常见问题解答

转自&#xff1a; http://blog.csdn.net/slyzhang/article/details/6110490 1.怎样在一个控件获得焦点时打开软键盘&#xff1f;比如一个EditBox获得焦点后&#xff0c;这个时候自动打开软键盘&#xff0c;这样可以方便用户输入——SIPINFO、SHSIPINFO、SIPSETINFO、SIPGETINFO…

Julia中的supertype()函数

Julia| supertype()函数 (Julia | supertype() function) supertype() function is a library function in Julia programming language, it is used to get the concrete supertype of the given type (data type). supertype()函数是Julia编程语言中的库函数&#xff0c;用于…

《操作系统知识点整理》

目录进程与线程比较多线程同步与互斥生产者与消费者哲学家就餐问题读者写者问题进程间通信管道消息队列共享内存信号量信号Socket锁互斥锁与自旋锁读写锁乐观锁与悲观锁死锁进程与线程比较 进程是资源&#xff08;包括内存、打开的文件等&#xff09;分配的单位&#xff0c;线…

for,foreach,iterator的用法和区别

相同点&#xff1a; 三个都可以用来遍历数组和集合不同点&#xff1a;1.形式差别 for的形式是 for&#xff08;int i0;i<arr.size();i&#xff09;{...} foreach的形式是 for&#xff08;int i&…

和菜鸟一起学linux总线驱动之初识spi驱动主要结构

既然知道了协议了&#xff0c;那么就可以开始去瞧瞧linux kenerl中的spi的驱动代码了&#xff0c;代码中有很多的结构体&#xff0c;还是对主要的结构体先做个了解吧&#xff0c;那样才可以很好的理解驱动。主要是include/linux/spi.h 首先是SPI的主机和从机通信接口&#xff0…

操作系统大内核和微内核_操作系统中的内核

操作系统大内核和微内核A Kernel is the central component of an Operating System. The Kernel is also said to be the heart of the Operating System. It is responsible for managing all the processes, memory, files, etc. The Kernel functions at the lowest level …

《MySQL——锁》

全局锁是什么&#xff1f;全局锁有什么用&#xff1f;全局锁怎么用&#xff1f; 全局锁主要用在逻辑备份过程中&#xff0c;对于InnoDB 引擎的库&#xff0c;使用–single-transaction; MySQL 提供了一个加全局读锁的方法&#xff0c;命令是 Flush tables with read lock (FTW…

搜索引擎Constellio及Google Search Appliances connectors

做搜索产品的时候发现国外一个同类型的产品contellio&#xff0c;发现功能比较强大&#xff0c;先记录下来 貌似可以添加文档 网站 以及数据库等不同类型的数据源 http://wiki.constellio.com/index.php/Main_Page http://www.constellio.com/ http://www.constellio.com htt…

dig下载_DIG的完整形式是什么?

dig下载DIG&#xff1a;副监察长 (DIG: Deputy Inspector General) DIG is an abbreviation of the Deputy Inspector General. It is a high-level position in the Indian Police Service. The officers who already offered service on Senior Superintendent of Police (SS…

分类器是如何做检测的?——CascadeClassifier中的detectMultiScale函数解读

原地址&#xff1a;http://blog.csdn.net/delltdk/article/details/9186875 在进入detectMultiScal函数之前&#xff0c;首先需要对CascadeClassifier做初始化。 1. 初始化——read函数 CascadeClassifier的初始化很简单&#xff1a; cv::CascadeClassifier classifier; cl…

<MySQL>何时使用普通索引,何时使用唯一索引

如果能够保证业务代码不会写入重复数据&#xff0c;就可以继续往下看。 如果业务不能保证&#xff0c;那么必须创建唯一索引。 关于查询能力 普通索引和唯一索引在查询能力上是没有很大差别的。 如&#xff1a;select id from T where k5 1、普通索引查找到满足条件的第一个记…

Web版OutLook,利用POP接收邮件服务器邮件

一直想做一个Web版的OutLook&#xff0c;所以才萌生这个想法&#xff0c;其实以前也接触过这方面的东西。于是上网找了找&#xff0c;漫天的都是Jmail来接收&#xff0c;好吧&#xff0c;既然大家都在用我也就下载下来试试了。 什么&#xff0c;怎么总是报错呢&#xff1f;原来…

abs std::abs_ABS的完整形式是什么?

abs std::absABS&#xff1a;防抱死制动系统 (ABS: Anti-lock Braking System) ABS is an abbreviation of the Anti-lock Braking System. It is a safety anti-skid braking system that is used on a variety of aircraft, automobiles and other land vehicles, such as mo…

ubuntu 使用

shell 命令历史搜索 &#xff1a; ctrl r使能 session 选择界面&#xff1a;安装gnome-session-fallback安装lwqq转载于:https://www.cnblogs.com/JonnyLulu/p/3600263.html

汉字速查使用方法简介

《汉字速查》&#xff08;HanziSearcher&#xff09;是一个支持全汉字字典和词典的检索工具。其界面如下所示。 界面上方为工具栏。 左方为字典和词典检索栏。 右方在启动时显示版权信息和作者的联系方式&#xff0c;在执行检索时&#xff0c;显示检索结果。 检索方法 汉字速查…

android jni示例_Android服务示例

android jni示例A service is a component that runs in the background for supporting different types of operations that are long running. The user is not interacted with these. These perform task even if application is destroyed. Examples include handling of…

《MySQL——选错索引,该如何做》

如果不断地删除历史数据和新增数据&#xff0c;MySQL有时会选错索引。 选择索引是优化器的工作&#xff0c;优化器优化时会考虑的因素&#xff1a;扫描行数、是否需要排序、是否使用临时表 MySQL通过统计索引上的基数&#xff0c;作为索引的区分度。 统计方法时采样统计&#x…