zoukankan      html  css  js  c++  java
  • Binary Tree Traversals HDU

    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

    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

    树的重建,其实也是套路(rec()是书上给的代码,不太好理解)!
    需要注意的是vector,有时需要清空(根据题目来定)!
    因为这是颗不完整的树,如果将后序存在数组里面,可能会爆掉!所以直接打印!
     1 #include<cstdio>
     2 #include<cstring>
     3 #include<iostream>
     4 #include<vector>
     5 #include<algorithm>
     6 using namespace std;
     7 vector<int> 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<<root;                                 //长数组的输出,最好直接打印出来,不存! 
    17     cnt++;
    18     if(cnt!=n) cout<<" "; 
    19     if(cnt==n) cout<<endl;    
    20 }
    21 int main()
    22 {   int k;
    23     while(cin>>n){
    24           pos=0,cnt=0;
    25        for(int i=0;i<n;i++)
    26        {   
    27            cin>>k;
    28            pre.push_back(k);
    29        }
    30        for(int i=0;i<n;i++)
    31        {
    32               cin>>k;
    33               in.push_back(k);
    34        }
    35        rec(0,pre.size()); 
    36        pre.clear();                      //vector在外面声明的话,如果要多次用,就要清空; 
    37        in.clear();                       
    38     }
    39     return 0;
    40 }
  • 相关阅读:
    poj 2187 Beauty Contest(旋转卡壳)
    poj 2540 Hotter Colder(极角计算半平面交)
    poj 1279 Art Gallery(利用极角计算半平面交)
    poj 3384 Feng Shui(半平面交的联机算法)
    poj 1151 Atlantis(矩形面积并)
    zoj 1659 Mobile Phone Coverage(矩形面积并)
    uva 10213 How Many Pieces of Land (欧拉公式计算多面体)
    uva 190 Circle Through Three Points(三点求外心)
    zoj 1280 Intersecting Lines(两直线交点)
    poj 1041 John's trip(欧拉回路)
  • 原文地址:https://www.cnblogs.com/zgglj-com/p/6481533.html
Copyright © 2011-2022 走看看