·
·
文章目录
  1. 题目介绍
  2. 复杂度
  3. 解题思路

Pascal's Triangle

题目介绍

LeetCode 118. Pascal’s Triangle

复杂度

时间复杂度: O(numRows^2), 空间复杂度: O(numRows^2)

解题思路

头和尾的元素都是1,中间用循环赋值即可,赋值表达式ans[i-1][j-1]+ans[i-1][j]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
func generate(_ numRows: Int) -> [[Int]] {
var ans: [[Int]] = []
for i in 0..<numRows {
if i == 0 {
ans.append([1])
} else {
// 头和尾的元素都是1,中间用循环赋值即可
var nums: [Int] = [1, 1]
for j in 1..<i {
nums.insert(ans[i-1][j-1]+ans[i-1][j], at: j)
}
ans.append(nums)
}
}
return ans
}
}
**版权声明**

Ivan’s Blog by Ivan Ye is licensed under a Creative Commons BY-NC-ND 4.0 International License.
叶帆创作并维护的叶帆的博客博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证

本文首发于Ivan’s Blog | 叶帆的博客博客( http://yeziahehe.com ),版权所有,侵权必究。

本文链接:http://yeziahehe.com/2020/03/07/Pascal'sTriangle/

支持一下
扫一扫,支持yeziahehe
  • 微信扫一扫
  • 支付宝扫一扫