Source file: | leaves.{c, cpp, java, pas} |
Input file: | leaves.in |
Output file: | leaves.out |
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 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:
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:
Consider the following sequence of operations on a binary search tree of letters
Remove the leaves and list the data removedStarting from the tree below on the left, we produce the sequence of trees shown, and then the empty tree
Repeat this procedure until the tree is empty
BDHPYYour 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.
CM
GQ
K
The input file 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.
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.
Example input:
BDHPYExample output:
CM
GQ
K
*
AC
B
$
Last modified Tue Oct 24 00:17:27 2000KGCBDHQMPY BAC