You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/codes/swift/chapter_dynamic_programming/climbing_stairs_dfs_mem.swift

41 lines
974 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* File: climbing_stairs_dfs_mem.swift
* Created Time: 2023-07-15
* Author: nuomi1 (nuomi1@qq.com)
*/
/* */
func dfs(i: Int, mem: inout [Int]) -> Int {
// dp[1] dp[2]
if i == 1 || i == 2 {
return i
}
// dp[i]
if mem[i] != -1 {
return mem[i]
}
// dp[i] = dp[i-1] + dp[i-2]
let count = dfs(i: i - 1, mem: &mem) + dfs(i: i - 2, mem: &mem)
// dp[i]
mem[i] = count
return count
}
/* */
func climbingStairsDFSMem(n: Int) -> Int {
// mem[i] i -1
var mem = Array(repeating: -1, count: n + 1)
return dfs(i: n, mem: &mem)
}
@main
enum ClimbingStairsDFSMem {
/* Driver Code */
static func main() {
let n = 9
let res = climbingStairsDFSMem(n: n)
print("\(n) 阶楼梯共有 \(res) 种方案")
}
}