leetcode118-杨辉三角
Posted xinfenglee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode118-杨辉三角相关的知识,希望对你有一定的参考价值。
/**
* Return an array of arrays.
* The sizes of the arrays are returned as *columnSizes array.
* Note: Both returned array and *columnSizes array must be malloced, assume caller calls free().
*/
int** generate(int numRows, int** columnSizes) {
int **array;
array = (int **)malloc(sizeof(int *) * numRows);
*columnSizes =(int*) malloc(sizeof(int ) * numRows);
int i, j;
for(i = 0; i < numRows; i++)
{
(*columnSizes)[i] = i+1;
array[i] = (int*)malloc(sizeof(int) *(i+1));
array[i][0] = 1;
array[i][i] = 1;
}
for (i = 1; i < numRows; i++)
{
for (j = 1; j < i; j++)
{
array[i][j] = array[i-1][j-1] + array[i-1][j];
}
}
return array;
}
array
以上是关于leetcode118-杨辉三角的主要内容,如果未能解决你的问题,请参考以下文章
⭐算法入门⭐《递推 - 二维》简单01 —— LeetCode 118. 杨辉三角