码迷,mamicode.com
首页 >  
搜索关键字:三角数    ( 27个结果
Java 递归、尾递归、非递归、栈 处理 三角数问题
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
最大分割三角数---Python
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. 打印杨辉三角
数组-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
Pascal's Triangle
本文是在学习中的总结,欢迎转载但请注明出处: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
leetcode Triangle
给定一个三角数组,找从上到下的最小和,例如: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
欧拉项目python代码
第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(杨辉三角)
POJ 3146 & HDU 3304 Interesting Yang Yui Triangle(杨辉三角)...
分类:其他好文   时间:2014-09-25 18:43:52    阅读次数:218
27条   上一页 1 2 3
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!