给定一个非负整数 numRows,生成「杨辉三角」的前 numRows 行。
在「杨辉三角」中,每个数是它左上方和右上方的数的和。
示例 1:
输入: numRows = 5
输出: [[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1]]
示例 2:
输入: numRows = 1
输出: [[1]]
提示:
1 <= numRows <= 30
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/pascals-triangle
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
题解:
class Solution {
public List<List<Integer>> generate(int numRows) {
List<List<Integer>> list = new LinkedList<>();
for (int i = 0; i < numRows; i++) {
List<Integer> floor = new LinkedList<>();
for (int j = 0; j <= i; j++) {
floor.add(Combination(i,j));
}
list.add(floor);
}
return list;
}
public static int Combination(int bottom, int upper) {
if (upper == 0 || upper == bottom) return 1;
if (upper > bottom / 2) upper = bottom- upper;
long member = bottom;
long tmpUpper = upper;
long denominator = upper;
while (--tmpUpper > 0) {
member *= (--bottom);
denominator *= tmpUpper;
}
return (int)(member / denominator);
}
}