poj1577 Falling Leaves 二叉排序樹

Description

 
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<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
struct Bitree{
	char data;
	struct Bitree *lchild,*rchild;
};
Bitree *buildnode(char c)
{
	Bitree *leaf=new Bitree;
	leaf->data=c;
	leaf->lchild=NULL;
	leaf->rchild=NULL;
	return leaf;
}
Bitree *insert(Bitree * &root,char c)//這個地方要用&引用,不然...改變不了root
{
	Bitree *leaf=root;
	if(root==NULL)
	{
		root=buildnode(c);
		return root;
	}
	if((root->data)>c)return insert(root->lchild,c);
	else return insert(root->rchild,c);
}
void Printf(Bitree *p)
{
	if(p!=NULL)
	{
		cout<<p->data;
		Printf(p->lchild);
		Printf(p->rchild);
	}
}
int main()
{
	string str,p;
	int i,len;
	Bitree* root=NULL;
	while(cin>>str)
	{
		if(str=="*"||str=="$")
		{
			Bitree *t;
			for(i=p.length()-1;i>=0;i--)insert(root,p[i]);
		    Printf(root);
			cout<<endl;
			if(str=="$")break;
			root=NULL;
			p="";
		}
		else p+=str;
	}
} 
數組版本
<pre name="code" class="cpp">#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
struct bitree{
	char c;
	int lchild,rchild;
}tree[30];
char str[100][30];
int n;
void insert(int i,char c)
{
	if(c<tree[i].c)
	{
		if(tree[i].lchild==0)
		{
			tree[n].c=c;
			tree[i].lchild=n++;
			return;
		}
		insert(tree[i].lchild,c);
	}
	else {
		if(tree[i].rchild==0)
		{
			tree[n].c=c;
			tree[i].rchild=n++;
			return;
		}
		insert(tree[i].rchild,c);
	}
}
void print(int i)
{
	cout<<tree[i].c;
	if(tree[i].lchild)print(tree[i].lchild);
	if(tree[i].rchild)print(tree[i].rchild);
}
int main()
{
	int i,j,cnt;
	while(cin>>str[0])
	{
		cnt=n=0;
		if(str[0][0]=='$')break;
		while(isalpha(str[cnt][0]))cin>>str[++cnt];
		cnt--;
		memset(tree,0,sizeof(tree));
		tree[n++].c=str[cnt][0];//根節點 
		for(i=cnt-1;i>=0;i--)
			for(j=0;j<strlen(str[i]);j++)
			   insert(0,str[i][j]);
		print(0);
		cout<<endl;
	}
	return 0;
}




發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章