poj 1095--Trees Made to Order

 

原题地址:http://acm.pku.edu.cn/JudgeOnline/problem?id=1095

 

Description

We can number binary trees using the following scheme:
The empty tree is numbered 0.
The single-node tree is numbered 1.
All binary trees having m nodes have numbers less than all those having m+1 nodes.
Any binary tree having m nodes with left and right subtrees L and R is numbered n such that all trees having m nodes numbered > n have either Left subtrees numbered higher than L, or A left subtree = L and a right subtree numbered higher than R.

The first 10 binary trees and tree number 20 in this sequence are shown below:

Your job for this problem is to output a binary tree when given its order number.

Input

Input consists of multiple problem instances. Each instance consists of a single integer n, where 1 <= n <= 500,000,000. A value of n = 0 terminates input. (Note that this means you will never have to output the empty tree.)

Output

For each problem instance, you should output one line containing the tree corresponding to the order number for that instance. To print out the tree, use the following scheme:

A tree with no children should be output as X.
A tree with left and right subtrees L and R should be output as (L')X(R'), where L' and R' are the representations of L and R.
If L is empty, just output X(R').
If R is empty, just output (L')X.

Sample Input

1
20
31117532
0

Sample Output

X
((X)X(X))X
(X(X(((X(X))X(X))X(X))))X(((X((X)X((X)X)))X)X)
 
整理:
根据输入的数字,输出树的形状,用字符串表示出来。
规律:(其实就是数学的)
以节点数为,分一个节点,二个节点,三个节点,所能代表的数(用a[]表示)。令a[0]=1;
则第j个节点,所能代表的数a[j],有下面的式子。
a[j]=a[0]*a[j-1]+a[1]*a[j-2]+.....+a[j-1]*a[j];
代表的意思是,有j个节点=左边0个节点的个数*右边j-1个节点的个数+....+左边j-1个节点的个数*右边0个节点的个数。
算法:
根据输入的n
判断出节点数
再判断出左右的节点数和左右所代表的数。
然后递归调用左右。
代码:
 
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 7
    评论
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值