import java.io.BufferedReader;
import java.io.InputStreamReader;
//1,3,6,10,15...n 三角数
/*
* # 1
* ## 1+2
* ### 1+2+3
* #### 1+2+3+4
* ##### 1+2+3+4+5
* ...第1层为1, 第n层等于 n + (f(n-1))
...
分类:
编程语言 时间:
2015-07-01 18:11:47
阅读次数:
136
The sequence of triangle numbers is generated by adding the natural numbers. So the 7th triangle number would be 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28. The f...
分类:
编程语言 时间:
2015-02-05 20:02:02
阅读次数:
181
数组-02. 打印杨辉三角(20)时间限制400 ms内存限制65536 kB代码长度限制8000 B判题程序Standard作者徐镜春(浙江大学)本题要求按照规定格式打印前N行杨辉三角。输入格式:输入在一行中给出N(1 2 #include 3 #include 4 #include 5 int ...
分类:
编程语言 时间:
2015-01-20 17:12:54
阅读次数:
365
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/41827325
Given numRows, generate the first numRows of Pascal's triangle.
For example, given numRows = 5,
Return
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]...
分类:
其他好文 时间:
2014-12-09 21:39:15
阅读次数:
216
给定一个三角数组,找从上到下的最小和,例如:For example, given the following triangle[ [2], [3,4], [6,5,7], [4,1,8,3]]The minimum path sum from top to bottom is11...
分类:
其他好文 时间:
2014-12-02 13:22:08
阅读次数:
184
第12题:拥有超过500个因数的第一个三角数(1+2+3+4+......)def findivisionnum(num): count = 0 n=1 import math while count<num: count = 0 for i in...
分类:
编程语言 时间:
2014-09-27 19:44:50
阅读次数:
489
POJ 3146 & HDU 3304 Interesting Yang Yui Triangle(杨辉三角)...
分类:
其他好文 时间:
2014-09-25 18:43:52
阅读次数:
218