码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-07-19 17:46:05      阅读:79      评论:0      收藏:0      [点我收藏+]

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

技术图片

 

class Solution {

    public List<Integer> getRow(int rowIndex) {
        Integer[] res = new Integer[rowIndex+1];
        Arrays.fill(res,1);
        for(int i = 1; i <= rowIndex; 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

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