Pascal's Triangle II
【题目】
Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle.
Note that the row index starts from 0.
(翻译:给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行。)

In Pascal's triangle, each number is the sum of the two numbers directly above it.
(在杨辉三角中,每个数是它左上方和右上方的数的和。)
Example:
Input: 3
Output: [1,3,3,1]
【分析】
只是我上一篇博客题目的简单变形,此题更为简单,还是用ArrayList + 暴力求解,Java实现代码如下:
class Solution {
public List<Integer> getRow(int rowIndex) {
List<Integer> row = new ArrayList<>();
if (rowIndex < 0) return row;
for (int i = 0; i < rowIndex + 1; i++) {
row.add(0, 1);
for (int j = 1; j < row.size() - 1; j++) {
row.set(j, row.get(j) + row.get(j + 1));
}
}
return row;
}
}
本文介绍了一个简单的算法,用于求解杨辉三角的第K行,通过使用ArrayList和迭代方法,有效地解决了LeetCode上的Pascal's Triangle II问题。示例输入为3,输出为[1,3,3,1]。
7858

被折叠的 条评论
为什么被折叠?



