给定一个非负整数 numRows,生成杨辉三角的前 numRows 行。
示例:
输入: 5
输出:
[
[1],
[1,1],
[1,2,1],
[1,3,3,1],
[1,4,6,4,1]
]
代码:
class Solution {
public List<List<Integer>> generate(int numRows) {
List<List<Integer>> ans = new ArrayList<List<Integer>>();
//遍历链表
for (int i = 0; i < numRows; i++) {
List<Integer> list = new ArrayList<Integer>();
//遍历内部链表,添加元素
for (int j = 0; j <= i; j++) {
//每一列的开头和结尾元素为1,开头的时候,j=0,结尾的时候,j=i
if (j == 0 || j == i ) {
list.add(1);
} else {//每一个元素是它上一行的元素和斜对角元素之和
list.add(ans.get(i - 1).get(j) + ans.get(i - 1).get(j - 1));
}
}
ans.add(list);
}
return ans;
}
}