上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 34 下一页
摘要: uva 699紫书P159Each year, fall in the North Central region is accompanied by the brilliant colors of the leaves on the trees, followed quickly by the fa... 阅读全文
posted @ 2015-11-28 16:47 江南何采莲 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 紫书:P155uva 548You are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root ... 阅读全文
posted @ 2015-11-28 15:21 江南何采莲 阅读(759) 评论(0) 推荐(0) 编辑
摘要: 紫书:P150 uva122BackgroundTrees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking Machi... 阅读全文
posted @ 2015-11-27 21:26 江南何采莲 阅读(433) 评论(1) 推荐(0) 编辑
摘要: 紫书P148,例题6-6Sample Input4 23 410 12 28 128Sample Output1275123255这应该不仅仅是一棵完全二叉树,题目中说保证所有叶子节点的深度都相同,所以这是一颗满二叉树。这里要弄清满二叉树的一些概念和性质,首先,对于一颗满二叉树来说,他每一层的节点数... 阅读全文
posted @ 2015-11-27 14:33 江南何采莲 阅读(391) 评论(0) 推荐(0) 编辑
摘要: codeforces 599c C. Day at the Beach C. Day at the Beach One day Squidward, Spongebob and Patrick decided to go to the beach. Unfortunately, the weathe 阅读全文
posted @ 2015-11-24 21:11 江南何采莲 阅读(176) 评论(0) 推荐(0) 编辑
摘要: uva 221 提供个房子的坐标以及房子宽度和高度,要求你求从南边看过去,可以看到的房子有哪些 PS:一定要注意题目的这句:One blank line must separate output from consecutive input records.不然会直接报错 可以直接使用暴力做,不过要 阅读全文
posted @ 2015-11-16 16:32 江南何采莲 阅读(189) 评论(0) 推荐(0) 编辑
摘要: Reorder the Books Accepts: 127 Submissions: 237 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Reorder the Books A 阅读全文
posted @ 2015-11-01 21:05 江南何采莲 阅读(215) 评论(0) 推荐(0) 编辑
摘要: uva 10730 题意:给出一列数字,如果其中存在长度大于等于3的等差数列,输出no,不存在就输出yes 这道题标定了数列长度n,而且这n个数数据范围是从0到n-1,没有相同的数,这就给我们枚举提供了方便,记录每个数字出现的位置,枚举公差,判断位置对不对 #include <iostream> # 阅读全文
posted @ 2015-11-01 18:02 江南何采莲 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Description Once upon a time there was a greedy King who ordered his chief Architect to build a field for royal cricket inside his park. The King was 阅读全文
posted @ 2015-11-01 17:11 江南何采莲 阅读(240) 评论(0) 推荐(0) 编辑
摘要: poj 5523 这个题目属于事件分析,只要把主要的条理弄清了也就能写了,程序的结果无非4种:-1 0 1 2 首先要知道在n个数中选择任意两个s和t会有很多种,所以应该要减少复杂程度,其中答案属于2的情况最多,因此要先判断 -1 0 1的情况,剩下的就都属于2了 首先如果出口和入口重合的话,那就为 阅读全文
posted @ 2015-11-01 14:48 江南何采莲 阅读(287) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 34 下一页