二叉树_Binary Tree Traversals

source

Description

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.

Input
The 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.
Output
For each test case print a single line specifying the corresponding postorder sequence.

Sample Input

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

Sample Output

7 4 2 8 9 5 6 3 1

题意:树中没有重复的节点,根据树的前序遍历和中序遍历,写出树的后序遍历

#include<cstdio>
#include<iostream>
using namespace std;
int *c,j;
void visit(int * a,int * b,int indexa,int indexb,int len)
{
    if(len<=0) return ;
    int dex;
    for(int i=indexb;i<indexb+len;i++)
    {
        if(b[i]==a[indexa]) {
                dex=i;
                break;
        }
    }
    c[j++]=a[indexa];
    if(dex!=indexb+len-1)
    visit(a,b,indexa+dex-indexb+1,dex+1,len+indexb-dex-1);
    if(dex!=indexb)
    {
       visit(a,b,indexa+1,indexb,dex-indexb);
    }

}
int main()
{

    int n;
    while(cin>>n)
    {
        int * a=new int[n],*b=new int[n];
        for(int k=0;k<n;k++)
        {

            cin>>a[k];
        }
        for(int k=0;k<n;k++)
        {
            cin>>b[k];
        }
        c=new int[n];
        j=0;
        visit(a,b,0,0,n);
        for(int k=n-1;k>0;k--)
        {
        cout<<c[k]<<" ";
        }
        cout<<c[0]<<endl;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,779评论 0 33
  • 加入领读营第五天。 今天早上的小理论是:自由个性理论,来自人格心理学家Brain little。 说起来似乎每个人...
    细泉阅读 396评论 0 2
  • 人与元认知能力 一、元认知的重要性 周星弛:人如果没有梦想那和咸鱼有什么区别? 李笑来:人如果没有元认知能力,那和...
    青青wh阅读 315评论 0 0
  • 收到一个关于PPT图片的问题。 “PPT高手都能够用非常高清且非常能够表达语境的图片作为PPT背景图片,请问高手们...
    马生角陈宾利阅读 3,141评论 13 156
  • 高架桥纵横交错 汽车川流不息 高楼林立 这就是我眼中最初的大城市 我是一个农村的孩子 从小就有走进大城市的梦想 大...
    李宝胜阅读 9评论 0 0