码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1577 Falling Leaves 二叉搜索树

时间:2018-10-29 23:36:01      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:ike   ring   cst   rsa   struct   ebs   反转   htc   mes   

HDU 3791 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

解题思路:    
  本题给出多组字符串每组以*为结尾以$为结束条件要求输出每一组数据所建立的二叉搜索树的先序遍历
如例中输入:
BDHPY
CM 插入顺序为   ->   K      ->           K                  ->               K
GQ                          G Q            G          Q                   G                Q
K                                             C         M                  C        H     M          Y
*                                                                           B    D                P
其先序遍历为:KGCBDHQMPY。

 1 #include <cstdio>
 2 #include <cstring>
 3 #include <vector>
 4 #include <iterator>
 5 #include <iostream>
 6 #include <algorithm>
 7 // bits/stdc++.h会编译错误
 8 using namespace std;
 9 typedef char typeData;
10 struct node{
11     typeData data;
12     node *leftChild;
13     node *rightChild;
14     node(){
15         leftChild = NULL;
16         rightChild = NULL;
17     }
18 };
19 vector<typeData> data;
20 string temp, str;
21 void insertBST(node *&root, typeData x){ //二叉搜索树插入函数
22      //注意函数要进行插入操作,根结点要传引用
23     if(root == NULL){   //找到空位置即使插入位置
24         root = new node();  //新建结点权值为x
25         root->data = x;
26         return;
27     }
28     if(x == root->data){    //要插入结点已存在直接返回
29         return;
30     }else if(root->data > x){   //x比根结点数据域小 需要插在左子树
31         insertBST(root->leftChild, x);   //往左子树搜索
32     }else if(root->data < x){    //x比根结点数据域大 需要插在右子树
33         insertBST(root->rightChild, x); //往右子树搜索
34     }
35 }
36 node *createBST(){  //建树
37     node *root = NULL;
38     for(string::iterator it = str.begin(); it != str.end(); it++){
39         insertBST(root, *it);   //以str为数据组建树
40     }
41     return root;    //返回根结点
42 }
43 void preorder(node *root){
44     if(root == NULL)//到达空树为递归边界
45         return;
46     printf("%c", root->data);  //访问根结点输出权值
47     preorder(root->leftChild); //访问左子树
48     preorder(root->rightChild);  //访问右子树
49 }
50 int main()
51 {
52     while(cin >> temp){  //输入字符串
53         if(temp != "*" && temp != "$"){
54             //如果输入的字符串不是组结束符或结尾符
55             str += temp;    //将出入的字符串加到str字符串尾部
56             continue;
57         }
58         //如果输入的时组结束符或结尾符
59         reverse(str.begin(),str.end()); //将str数组反转
60         node *root = createBST();   //建树
61         str = "";   //将str清空
62         preorder(root); //输出前序遍历
63         printf("\n");
64         if(temp == "$")//如果是结尾符跳出循环
65             break;
66     }
67     return 0;
68 }

 

POJ 1577 Falling Leaves 二叉搜索树

标签:ike   ring   cst   rsa   struct   ebs   反转   htc   mes   

原文地址:https://www.cnblogs.com/suvvm/p/9873951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!