zoukankan      html  css  js  c++  java
  • Aizu

    Binary trees are defined recursively. A binary tree T is a structure defined on a finite set of nodes that either

    • contains no nodes, or
    • is composed of three disjoint sets of nodes:
      - a root node.
      - a binary tree called its left subtree.
      - a binary tree called its right subtree.

    Your task is to write a program which perform tree walks (systematically traverse all nodes in a tree) based on the following algorithms:

    1. Print the root, the left subtree and right subtree (preorder).
    2. Print the left subtree, the root and right subtree (inorder).
    3. Print the left subtree, right subtree and the root (postorder).

    Here, the given binary tree consists of n nodes and evey node has a unique ID from 0 to n-1.

    Input

    The first line of the input includes an integer n, the number of nodes of the tree.

    In the next n linen, the information of each node is given in the following format:

    id left right

    id is the node ID, left is ID of the left child and right is ID of the right child. If the node does not have the left (right) child, the left(right) is indicated by -1

    Output

    In the 1st line, print "Preorder", and in the 2nd line print a list of node IDs obtained by the preorder tree walk.

    In the 3rd line, print "Inorder", and in the 4th line print a list of node IDs obtained by the inorder tree walk.

    In the 5th line, print "Postorder", and in the 6th line print a list of node IDs obtained by the postorder tree walk.

    Print a space character before each node ID.

    Constraints

    • 1 ≤ n ≤ 25

    Sample Input 1

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

    Sample Output 1

    Preorder
     0 1 2 3 4 5 6 7 8
    Inorder
     2 1 3 0 6 5 7 4 8
    Postorder
     2 3 1 6 7 5 8 4 0
    
     

    Reference

    Introduction to Algorithms, Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein. The MIT Press.

    二叉树的遍历。

    1.按照根节点、左子树、右子树的顺序输出结点编号。这称为树的前序遍历。

    2.按照左子树、根节点、右子树的顺序输出结点编号。这称为树的中序遍历。

    3.按照左子树、右子树、根节点的顺序输出结点编号。这称为树的后序遍历。

    #include<iostream>
    #include<algorithm>
    using namespace std;
    const int maxn=1000,NIL=-1;
    struct Node
    {
        int l,r,p;
    }T[maxn];
    void preParse(int u)//前序遍历
    {
        if(u==NIL)
            return ;
        cout<<" "<<u;
        preParse(T[u].l);
        preParse(T[u].r);
    }
    void inParse(int u)//中序遍历
    {
        if(u==NIL)
            return ;
        inParse(T[u].l);
        cout<<" "<<u;
        inParse(T[u].r);
    }
    void postParse(int u)//后序遍历
    {
        if(u==NIL)
            return ;
        postParse(T[u].l);
        postParse(T[u].r);
        cout<<" "<<u;
    }
    int main()
    {
        int n;
        cin>>n;
        for(int i=0;i<n;i++)
            T[i].p=NIL;
        for(int i=0;i<n;i++)
        {
            int v,l,r;
            cin>>v>>l>>r;
            T[v].l=l;
            T[v].r=r;
            if(l!=NIL)
                T[l].p=v;
            if(r!=NIL)
                T[r].p=v;
        }
        int root;
        for(int i=0;i<n;i++)
            if(T[i].p==NIL)
                root=i;
        cout<<"Preorder
    ";
        preParse(root);
        cout<<endl;
        cout<<"Inorder
    ";
        inParse(root);
        cout<<endl;
        cout<<"Postorder
    ";
        postParse(root);
        cout<<endl;
        return 0;
    }
  • 相关阅读:
    [Tips] 树莓派VNC登录
    [Tips] 联通宽带+华为路由器,如何进行NAT
    [Tips] 树莓派4B 风扇安装
    [Tips] 家庭树莓派,如何外网访问
    [Tips] 命令行获取设备的外网IP
    MySQL 如何让自增id设置为从1开始
    MySQL报错:Packet for query is too large (2,588 > 2,048).
    Java 实现 Timstamp 和 String 互相转换
    MySQL修改 mysql-bin 日志保存天数以及文件大小限制
    Linux Shell 中的年月日 时分秒
  • 原文地址:https://www.cnblogs.com/orion7/p/7531688.html
Copyright © 2011-2022 走看看