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

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

#include 
#include
using namespace std;const int maxn = 100;int sum[maxn];//输入并统计一颗子树,树根水平位置为 p void build (int p){ int v; cin >> v; if (v == -1) return; //空树 sum[p] += v; build(p - 1); build(p + 1);}bool init(){ int v; cin >> v; if (v == -1) return false; //先序遍历输入,第一个数据就是树根,如果第一个数据为 -1,说明整个树都为空 memset(sum, 0, sizeof(sum)); int pos = maxn / 2; sum[pos] = v; build (pos - 1); build (pos + 1); // biild的参数,为权值累加的位置,在数组中的下标 }int main(){ int kase = 0; while (init()) { int p = 0; while (sum[p] == 0) p++; //找最左边的叶子 cout << "Case " << ++kase << ":" << endl << sum[p++]; // 因为要避免行末输出多余的空格 while (sum[p] != 0) cout << " " << sum[p++]; cout << endl << endl; //Follow the output for each case by a blank line,注意是 each case!! } return 0;}

转载于:https://www.cnblogs.com/mofushaohua/p/7789399.html

你可能感兴趣的文章
管道,数据共享,进程池
查看>>
CSS
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
程序集的混淆及签名
查看>>
判断9X9数组是否是数独的java代码
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>