LeetCode118 杨辉三角

Posted So istes immer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode118 杨辉三角相关的知识,希望对你有一定的参考价值。

目录

题目

给定一个非负整数 numRows,生成「杨辉三角」的前 numRows 行。

在「杨辉三角」中,每个数是它左上方和右上方的数的和。

 

示例 1
输入: numRows = 5
输出: [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]

提示:

  • 1 <= numRows <= 30

方法 数学

class Solution {
    public List<List<Integer>> generate(int numRows) {
        List<List<Integer>> ret = new ArrayList<List<Integer>>(); 
        for(int i = 0;i < numRows; ++i){
            List<Integer> row = new ArrayList<Integer>();
            for(int j = 0; j <= i; ++j){
                if(j == 0 || j == i){
                    row.add(1);
                } else {
                    row.add(ret.get(i-1).get(j-1) + ret.get(i-1).get(j));
                }
            }
            ret.add(row);
        }
        return ret;
    }
}

以上是关于LeetCode118 杨辉三角的主要内容,如果未能解决你的问题,请参考以下文章

leetcode118 罗辉三角(Easy)

leetcode算法118.杨辉三角

⭐算法入门⭐《递推 - 二维》简单01 —— LeetCode 118. 杨辉三角

Leetcode#118. Pascal's Triangle(杨辉三角)

LeetCode-118-杨辉三角

LeetCode:杨辉三角118