博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uva-699 The Falling Leaves
阅读量:5902 次
发布时间:2019-06-19

本文共 3227 字,大约阅读时间需要 10 分钟。

Each year, fall in the North Central region is accompanied by the brilliant colors of the leaves on the trees, followed quickly by the falling leaves accumulating under the trees. If the same thing happened to binary trees, how large would the piles of leaves become?

 

We assume each node in a binary tree "drops" a number of leaves equal to the integer value stored in that node. We also assume that these leaves drop vertically to the ground (thankfully, there's no wind to blow them around). Finally, we assume that the nodes are positioned horizontally in such a manner that the left and right children of a node are exactly one unit to the left and one unit to the right, respectively, of their parent. Consider the following tree:

 

The nodes containing 5 and 6 have the same horizontal position (with different vertical positions, of course). The node containing 7 is one unit to the left of those containing 5 and 6, and the node containing 3 is one unit to their right. When the "leaves" drop from these nodes, three piles are created: the leftmost one contains 7 leaves (from the leftmost node), the next contains 11 (from the nodes containing 5 and 6), and the rightmost pile contains 3. (While it is true that only leaf nodes in a tree would logically have leaves, we ignore that in this problem.)

 

Input 

The input contains multiple test cases, each describing a single tree. A tree is specified by giving the value in the root node, followed by the description of the left subtree, and then the description of the right subtree. If a subtree is empty, the value  -1  is supplied. Thus the tree shown above is specified as  5 7 -1 6 -1 -1 3 -1 -1 . Each actual tree node contains a positive, non-zero value. The last test case is followed by a single  -1  (which would otherwise represent an empty tree).

 

Output 

For each test case, display the case number (they are numbered sequentially, starting with 1) on a line by itself. On the next line display the number of "leaves" in each pile, from left to right, with a single space separating each value. This display must start in column 1, and will not exceed the width of an 80-character line. Follow the output for each case by a blank line. This format is illustrated in the examples below.

 

Sample Input 

 

5 7 -1 6 -1 -1 3 -1 -18 2 9 -1 -1 6 5 -1 -1 12 -1-1 3 7 -1 -1 -1-1

 

Sample Output 

Case 1:7 11 3Case 2:9 7 21 15
题目意思:给出一棵树,求在每一列的数的和是多少;
解题思路:先把树建好,然后用一个够大的数组把每列的和求出来,最后遍历数组输出。
我想过计算每个节点到最左边的孩子的距离来当数组下标,可实在想不出来怎么实现,大神如果会,请留言……
#include
#include
using namespace std;struct node{ int data; int index; node*left,*right; node(int a):data(a),index(0),left(0),right(0) {}};node* create(){ int num; cin>>num; if(num==-1) return 0; node*root=new node(num); root->left=create(); root->right=create(); return root;}int arr[10000];void see(node*root,int index){ if(root) { //cout<
data<
data; see(root->left,index-1); see(root->right,index+1); }}int main(){ int cas=0; node* root; while(root=create()) { memset(arr,0,sizeof(arr)); int index=100; see(root,index); while(arr[index])index--; cout<<"Case "<<++cas<<":"<
 

转载地址:http://mwkpx.baihongyu.com/

你可能感兴趣的文章
JDK 生成数字证书
查看>>
Ubuntu 10.04下如何查看分区的UUID
查看>>
C#回顾 - 2.NET的IO:Path、File、FileInfo、Directory、DirectoryInfo、DriveInfo、FileSystemWatcher...
查看>>
常用在线帮助文档
查看>>
Github简介
查看>>
部署包含水晶报表Crystal Reports 的VS.NET2005应用程序[原创]
查看>>
存储过程—导出table数据为inser sqlt语句
查看>>
loj 1032(数位dp)
查看>>
ubuntu下超强的截图工具scrot
查看>>
Windows 7下Maven3.0.3的安装
查看>>
CISCO2691的OSPF点对点密文测评测试
查看>>
POJ 1661 Help Jimmy(递推DP)
查看>>
Node.js 中文学习资料和教程导航
查看>>
查找(AVL平衡二叉树)
查看>>
Javascript函数调用的四种模式
查看>>
【python】标准库的大致认识
查看>>
用 Asterisk 搭建自己的免费 VoIP 服务器
查看>>
lua笔记二 赋值语句
查看>>
css table表格无法调整宽度问题分析
查看>>
微信公众平台开发(83) 生成带参数二维码
查看>>