mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-17 06:00:58 +00:00
feat: Add Dart codes for chapter_dynamic_programming and chapter_greedy (#683)
* feat: Add Dart codes for chapter_dynamic_programming * feat: Add Dart codes for chapter_greedy
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
/**
|
||||
* File: climbing_stairs_dp.dart
|
||||
* Created Time: 2023-08-11
|
||||
* Author: liuyuxin (gvenusleo@gmail.com)
|
||||
*/
|
||||
|
||||
/* 爬楼梯:动态规划 */
|
||||
int climbingStairsDP(int n) {
|
||||
if (n == 1 || n == 2) return n;
|
||||
// 初始化 dp 表,用于存储子问题的解
|
||||
List<int> dp = List.filled(n + 1, 0);
|
||||
// 初始状态:预设最小子问题的解
|
||||
dp[1] = 1;
|
||||
dp[2] = 2;
|
||||
// 状态转移:从较小子问题逐步求解较大子问题
|
||||
for (int i = 3; i <= n; i++) {
|
||||
dp[i] = dp[i - 1] + dp[i - 2];
|
||||
}
|
||||
return dp[n];
|
||||
}
|
||||
|
||||
/* 爬楼梯:状态压缩后的动态规划 */
|
||||
int climbingStairsDPComp(int n) {
|
||||
if (n == 1 || n == 2) return n;
|
||||
int a = 1, b = 2;
|
||||
for (int i = 3; i <= n; i++) {
|
||||
int tmp = b;
|
||||
b = a + b;
|
||||
a = tmp;
|
||||
}
|
||||
return b;
|
||||
}
|
||||
|
||||
/* Driver Code */
|
||||
void main() {
|
||||
int n = 9;
|
||||
|
||||
int res = climbingStairsDP(n);
|
||||
print("爬 $n 阶楼梯共有 $res 种方案");
|
||||
|
||||
res = climbingStairsDPComp(n);
|
||||
print("爬 $n 阶楼梯共有 $res 种方案");
|
||||
}
|
||||
Reference in New Issue
Block a user