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
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
问题:输出杨辉三角的第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
问题:输出杨辉三角分析:对于每一行收尾都等于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
队列的顺序实现,链对实现。使用链对输出杨辉三角形(二项式列表)
分类:
其他好文 时间:
2014-06-22 13:39:04
阅读次数:
155