119. 杨辉三角 II(滚动数组优化的二维dp)
Posted yonezu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了119. 杨辉三角 II(滚动数组优化的二维dp)相关的知识,希望对你有一定的参考价值。
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)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 0119. 杨辉三角 II - 基于原地滚动的空间优化
LeetCode Algorithm 119. 杨辉三角 II