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

Climbing Stairs

题目介绍

LeetCode 70. Climbing Stairs

复杂度

时间复杂度: O(n), 空间复杂度: O(n)

解题思路

递归会造成大量的重复计算,可以考虑 dp 解法。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Solution {
func climbStairs(_ n: Int) -> Int {
if n < 3 {
return n
}
var dp: [Int] = Array(repeating: 0, count: n + 1)
dp[1] = 1
dp[2] = 2
for i in 3...n {
dp[i] = dp[i-1] + dp[i-2]
}
return dp[n]
}
}
**版权声明**

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/06/22/ClimbingStairs/

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