mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-02 18:44:22 +00:00
25 lines
931 B
Markdown
25 lines
931 B
Markdown
---
|
|
comments: true
|
|
icon: material/table-pivot
|
|
---
|
|
|
|
# Chapter 14. Dynamic Programming
|
|
|
|
{ class="cover-image" }
|
|
|
|
!!! abstract
|
|
|
|
Streams converge into rivers, rivers converge into the sea.
|
|
|
|
Dynamic programming gathers solutions to small problems into answers to large problems, step by step guiding us to the shore of problem-solving.
|
|
|
|
## Chapter contents
|
|
|
|
- [14.1 Introduction to Dynamic Programming](intro_to_dynamic_programming.md)
|
|
- [14.2 Characteristics of Dynamic Programming Problems](dp_problem_features.md)
|
|
- [14.3 Dynamic Programming Problem-Solving Approach](dp_solution_pipeline.md)
|
|
- [14.4 0-1 Knapsack Problem](knapsack_problem.md)
|
|
- [14.5 Unbounded Knapsack Problem](unbounded_knapsack_problem.md)
|
|
- [14.6 Edit Distance Problem](edit_distance_problem.md)
|
|
- [14.7 Summary](summary.md)
|