zoukankan      html  css  js  c++  java
  • Falling Leaves

     
    Figure 1

    Figure 1 shows a graphical representation of a binary tree of letters. People familiar with binary trees can skip over the definitions of a binary tree of letters, leaves of a binary tree, and a binary search tree of letters, and go right to The problem. 

    A binary tree of letters may be one of two things: 
    1. It may be empty. 
    2. It may have a root node. A node has a letter as data and refers to a left and a right subtree. The left and right subtrees are also binary trees of letters.

    In the graphical representation of a binary tree of letters: 
    1. Empty trees are omitted completely. 
    2. Each node is indicated by 
      • Its letter data, 
      • A line segment down to the left to the left subtree, if the left subtree is nonempty, 
      • A line segment down to the right to the right subtree, if the right subtree is nonempty.

    A leaf in a binary tree is a node whose subtrees are both empty. In the example in Figure 1, this would be the five nodes with data B, D, H, P, and Y. 

    The preorder traversal of a tree of letters satisfies the defining properties: 
    1. If the tree is empty, then the preorder traversal is empty. 
    2. If the tree is not empty, then the preorder traversal consists of the following, in order 
      • The data from the root node, 
      • The preorder traversal of the root's left subtree, 
      • The preorder traversal of the root's right subtree.

    The preorder traversal of the tree in Figure 1 is KGCBDHQMPY. 

    A tree like the one in Figure 1 is also a binary search tree of letters. A binary search tree of letters is a binary tree of letters in which each node satisfies: 

    The root's data comes later in the alphabet than all the data in the nodes in the left subtree. 

    The root's data comes earlier in the alphabet than all the data in the nodes in the right subtree. 

    The problem: 

    Consider the following sequence of operations on a binary search tree of letters 

    Remove the leaves and list the data removed 
    Repeat this procedure until the tree is empty 
    Starting from the tree below on the left, we produce the sequence of trees shown, and then the empty tree 

    by removing the leaves with data 

    BDHPY 
    CM 
    GQ 


    Your problem is to start with such a sequence of lines of leaves from a binary search tree of letters and output the preorder traversal of the tree.

    Input

    The input will contain one or more data sets. Each data set is a sequence of one or more lines of capital letters. 

    The lines contain the leaves removed from a binary search tree in the stages described above. The letters on a line will be listed in increasing alphabetical order. Data sets are separated by a line containing only an asterisk ('*'). 

    The last data set is followed by a line containing only a dollar sign ('$'). There are no blanks or empty lines in the input.

    Output

    For each input data set, there is a unique binary search tree that would produce the sequence of leaves. The output is a line containing only the preorder traversal of that tree, with no blanks.

    Sample Input

    BDHPY
    CM
    GQ
    K
    *
    AC
    B
    $

    Sample Output

    KGCBDHQMPY
    BAC

    思路:先模拟出树,再求前序遍历;这里注意根的值要比左节点的大,比右节点的小;
    #include <stdio.h>
    #include <stdlib.h>
    #include <cmath>
    #include <cstring>
    #include <iostream>
    #include<algorithm>
    #include <queue>
    #include <map>
    #include <vector>
    #include <cmath>
    #define INF 0x3f3f3f3f
    using namespace std;
    #define N 1005
    
    char Map[N][N];
    int n, m;
    char a[N];
    
    struct node
    {
        int x, y;
        char z;
    }p[N];
    
    void Add(int index, char str)
    {
        if(p[index].z==0)
        {
            p[index].z=str;
            return;
        }
        else if(p[index].z<str)
        {
            if(!p[index].y)
            {
                p[index].y=n++;
            }
            Add(p[index].y, str);
        }
        else
        {
            if(!p[index].x)
            {
                p[index].x=n++;
            }
            Add(p[index].x, str);
        }
    }
    
    void preorder(int root)
    {
        if(p[root].z==0)
        {
            return;
        }
        printf("%c", p[root].z);
        if(p[root].x!=0)
        {
            preorder(p[root].x);
        }
        if(p[root].y!=0)
        {
            preorder(p[root].y);
        }
    }
    
    int main()
    {
        int i, j, T;
        while(~scanf("%s", a))
        {
            int len=strlen(a);
            char ch;
            n=2;
            memset(p, 0, sizeof(p));
            while(1)
            {
                scanf("%c", &ch);
                if(ch>='A'&&ch<='Z')
                {
                    a[len++]=ch;
                }
                else if(ch=='*'||ch=='$')
                {
                    break;
                }
            }
            for(i=len-1;i>=0;i--)
            {
                Add(1, a[i]);
            }
            preorder(1);
            printf("
    ");
            if(ch=='$')
            {
                break;
            }
        }
        return 0;
    }
  • 相关阅读:
    [USACO12FEB]牛券Cow Coupons
    合并果子
    序列合并
    中位数
    道路游戏
    教主的花园
    摆花
    hello world之Makefile
    mysql+tomcat+spring 配置心得(从0开始搭环境)
    C#,.Net自动生成大写字母编码
  • 原文地址:https://www.cnblogs.com/zct994861943/p/7206212.html
Copyright © 2011-2022 走看看