给定一个非负索引 rowIndex
,返回「杨辉三角」的第 rowIndex
行。
在「杨辉三角」中,每个数是它左上方和右上方的数的和。
示例 1:
输入: rowIndex = 3 输出: [1,3,3,1]
示例 2:
输入: rowIndex = 0 输出: [1]
示例 3:
输入: rowIndex = 1 输出: [1,1]
提示:
0 <= rowIndex <= 33
解法:
在杨辉三角的基础上改动:
class Solution {public List<Integer> getRow(int rowIndex) {List<List<Integer>> listList = new ArrayList<>();int row = 1;while (row <= rowIndex + 1) {//生成行List<Integer> list = new ArrayList<>();for (int i = 0; i < row; i++) {if (i == 0 || i == row - 1) {list.add(1);} else {List<Integer> sRow = listList.get(row - 2);Integer f = sRow.get(i) + sRow.get(i - 1);list.add(f);}}listList.add(list);row++;}return listList.get(rowIndex);}
}