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/docs/chapter_dynamic_programming/index.md

25 lines
772 B

1 year ago
---
comments: true
1 year ago
icon: material/table-pivot
1 year ago
---
1 year ago
# 第 14 章   动态规划
1 year ago
1 year ago
![动态规划](../assets/covers/chapter_dynamic_programming.jpg){ class="cover-image" }
1 year ago
1 year ago
!!! abstract
小溪汇入河流,江河汇入大海。
动态规划将小问题的解汇集成大问题的答案,一步步引领我们走向解决问题的彼岸。
1 year ago
## 本章内容
7 months ago
- [14.1   初探动态规划](intro_to_dynamic_programming.md)
- [14.2   DP 问题特性](dp_problem_features.md)
- [14.3   DP 解题思路](dp_solution_pipeline.md)
- [14.4   0-1 背包问题](knapsack_problem.md)
- [14.5   完全背包问题](unbounded_knapsack_problem.md)
- [14.6   编辑距离问题](edit_distance_problem.md)
- [14.7   小结](summary.md)