【leetcode】动态规划 - 杨辉三角

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

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

示例 1:

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

示例 2:

输入: numRows = 1
输出: [[1]]

提示:

1 <= numRows <= 30


思路一:

使用动态规划
而且要明白列表如何使用

动态规划的初始值以及迭代公式,最后的返回值

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

    }
} 

特别注意这个代码模块

 List<List<Integer>> res =new ArrayList<List<Integer>>();

不可以写成List> res =new ArrayList<>();

但是这个代码模块

List<Integer> xx= new ArrayList<Integer>();

可以写成List xx= new ArrayList<>();

你可能感兴趣的:(算法,leetcode,动态规划,算法)