码迷,mamicode.com
首页 >  
搜索关键字:输出杨辉三角    ( 45个结果
输出杨辉三角(C++和 JAVA版 )
C++版本: #include using namespace std; void main() { int n=10; cout<>n; int **a = new int* [n]; for(int m = 0; m < n; m++) { a[m] = new int [n]; } for(int i=0;i<n;i...
分类:编程语言   时间:2015-04-02 01:29:48    阅读次数:305
武汉科技大学ACM:1001: 华科版C语言程序设计教程(第二版)习题6.7
Problem Description输出杨辉三角前n行。Input输入一个数n(n 2 int main() 3 { 4 int n,i,j; 5 int a[10][10]; 6 a[0][0]=a[1][0]=a[1][1]=1; 7 while(scanf(...
分类:编程语言   时间:2014-12-13 13:24:17    阅读次数:200
Pascal's Triangle II
问题:输出杨辉三角的第n行class Solution {public: vector getRow(int rowIndex) { vector vec; int a[100][100]; a[0][0]=1; int j,i; ...
分类:其他好文   时间:2014-08-06 22:03:42    阅读次数:214
Pascal's Triangle
问题:输出杨辉三角分析:对于每一行收尾都等于1,其他位置f[i,j]=f[i-1,j-1]+f[i-1,j]class Solution {public: vector > generate(int numRows) { int i,j; if(numRows==0...
分类:其他好文   时间:2014-08-03 22:55:26    阅读次数:186
队列(queue)
队列的顺序实现,链对实现。使用链对输出杨辉三角形(二项式列表)
分类:其他好文   时间:2014-06-22 13:39:04    阅读次数:155
45条   上一页 1 ... 3 4 5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!