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 }
  • 相关阅读:
    JS: 子项可以来回交换的两个下拉列表
    DOM事件
    DOM基础2——元素
    DOM基础1
    JS: 随机点名程序与万年历
    G_S男女匹配算法(算法的第一个程序2016.09.19)
    Java IO流详尽解析(大神之作)
    细讲解JAVA中的IO流
    c++运算符的优先级(收好不谢)
    java程序——输出当月日历表
  • 原文地址:https://www.cnblogs.com/zgglj-com/p/6481533.html
Copyright © 2011-2022 走看看