博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Binary Tree Traversals HDU - 1710 
阅读量:5257 次
发布时间:2019-06-14

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

A binary tree is a finite set of vertices that is either empty or consists of a root r and two disjoint binary trees called the left and right subtrees. There are three most important ways in which the vertices of a binary tree can be systematically traversed or ordered. They are preorder, inorder and postorder. Let T be a binary tree with root r and subtrees T1,T2.

In a preorder traversal of the vertices of T, we visit the root r followed by visiting the vertices of T1 in preorder, then the vertices of T2 in preorder.
In an inorder traversal of the vertices of T, we visit the vertices of T1 in inorder, then the root r, followed by the vertices of T2 in inorder.
In a postorder traversal of the vertices of T, we visit the vertices of T1 in postorder, then the vertices of T2 in postorder and finally we visit r.
Now you are given the preorder sequence and inorder sequence of a certain binary tree. Try to find out its postorder sequence.

InputThe input contains several test cases. The first line of each test case contains a single integer n (1<=n<=1000), the number of vertices of the binary tree. Followed by two lines, respectively indicating the preorder sequence and inorder sequence. You can assume they are always correspond to a exclusive binary tree.

OutputFor each test case print a single line specifying the corresponding postorder sequence.
Sample Input

91 2 4 7 3 5 8 9 64 7 2 1 8 5 9 3 6

Sample Output

7 4 2 8 9 5 6 3 1 树的重建,其实也是套路(rec()是书上给的代码,不太好理解)! 需要注意的是vector,有时需要清空(根据题目来定)! 因为这是颗不完整的树,如果将后序存在数组里面,可能会爆掉!所以直接打印!
1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 vector
pre,in; 8 int n,pos,cnt; 9 void rec(int l,int r)10 { 11 if(l>=r) return;12 int root=pre[pos++];13 int m=distance(in.begin(),find(in.begin(),in.end(),root));14 rec(l,m);15 rec(m+1,r);16 cout<
>n){24 pos=0,cnt=0;25 for(int i=0;i
>k;28 pre.push_back(k);29 }30 for(int i=0;i
>k;33 in.push_back(k);34 }35 rec(0,pre.size()); 36 pre.clear(); //vector在外面声明的话,如果要多次用,就要清空; 37 in.clear(); 38 }39 return 0;40 }

 

转载于:https://www.cnblogs.com/zgglj-com/p/6481533.html

你可能感兴趣的文章
多进程与多线程的区别
查看>>
Ubuntu(虚拟机)下安装Qt5.5.1
查看>>
java.io.IOException: read failed, socket might closed or timeout, read ret: -1
查看>>
java 常用命令
查看>>
CodeForces Round #545 Div.2
查看>>
卷积中的参数
查看>>
51nod1076 (边双连通)
查看>>
Item 9: Avoid Conversion Operators in Your APIs(Effective C#)
查看>>
深入浅出JavaScript(2)—ECMAScript
查看>>
STEP2——《数据分析:企业的贤内助》重点摘要笔记(六)——数据描述
查看>>
ViewPager的onPageChangeListener里面的一些方法参数:
查看>>
Jenkins关闭、重启,Jenkins服务的启动、停止方法。
查看>>
CF E2 - Array and Segments (Hard version) (线段树)
查看>>
Linux SPI总线和设备驱动架构之四:SPI数据传输的队列化
查看>>
SIGPIPE并产生一个信号处理
查看>>
CentOS
查看>>
Linux pipe函数
查看>>
java equals 小记
查看>>
爬虫-通用代码框架
查看>>
2019春 软件工程实践 助教总结
查看>>