Pascal’s Triangle II
Given a non-negative index k where k ≤ 33, return the k_th index row of the Pascal’s triangle. Note that the row index starts from 0.
(第k行杨辉三角)
Example:
1. 逐层生成
维护两个数组 result 和 result_before 表示当前层和前一层的结果,空间复杂度为 O(k). 具体实现过程如下:
1 | class Solution: |
2. 直接生成
根据杨辉三角的生成过程来维护一个数组,空间复杂度为 O(k). 具体实现过程如下:
1 | class Solution: |