119. 杨辉三角 II(滚动数组优化的二维dp)

2021-04-14 00:26

阅读:745

标签:滚动   public   mamicode   div   ima   二维   OWIN   info   solution   

技术图片

 

class Solution {

    public List getRow(int rowIndex) {
        Integer[] res = new Integer[rowIndex+1];
        Arrays.fill(res,1);
        for(int i = 1; i ) {
            for(int j = i - 1; j > 0; j--) {
                res[j] = res[j-1] + res[j];
            }
        }
        return Arrays.asList(res);
    }
}

 

119. 杨辉三角 II(滚动数组优化的二维dp)

标签:滚动   public   mamicode   div   ima   二维   OWIN   info   solution   

原文地址:https://www.cnblogs.com/yonezu/p/13339698.html


评论


亲,登录后才可以留言!