码迷,mamicode.com
首页 > 其他好文 > 详细

Pascal's Triangle

时间:2014-12-09 21:36:25      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   os   sp   for   on   bs   

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]
]

#include<stdio.h>
#include<stdlib.h>

int **generate(int numRows){
    int **p=(int **)malloc(sizeof(int *)*numRows);
    int i,j;
    for(i=0;i<numRows;i++){
        p[i]=(int *)malloc((i+1)*sizeof(int));
        p[i][0]=p[i][i]=1;
        for(j=1;j<i;j++) p[i][j]=p[i-1][j-1]+p[i-1][j];
    }
    return p;
}

void main()
{
    int n=4,i,j;
    int **p=generate(n);
    for(i=0;i<n;i++){
        for(j=0;j<=i;j++){
            printf("%d",p[i][j]);
        }
        printf("\n");
    }
}


Pascal's Triangle

标签:style   io   ar   color   os   sp   for   on   bs   

原文地址:http://blog.csdn.net/uj_mosquito/article/details/41827729

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!