|
| 1 | + |
| 2 | + |
| 3 | +::: tip 引 言 |
| 4 | +动态规划如同在迷雾中铺设星光小径。 |
| 5 | + |
| 6 | +循着昨日星辰的余晖,步步生辉,终将抵达最璀璨的彼岸。 |
| 7 | +::: |
| 8 | + |
1 | 9 | ## 本章内容
|
2 | 10 |
|
3 | 11 | - [8.1 动态规划基础](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_01_dynamic_programming_basic.md)
|
4 | 12 | - [8.2 记忆化搜索](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_02_memoization_search.md)
|
5 | | -- [8.3 线性 DP(一):单串线性 DP 问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_03_linear_dp_01.md) |
6 | | -- [8.4 线性 DP(二):双串线性 DP 问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_04_linear_dp_02.md) |
7 | | -- [8.5 线性 DP(三):矩阵线性 DP 问题、无串线性 DP 问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_05_linear_dp_02.md) |
8 | | -- [8.6 背包问题知识(一):0-1 背包问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_06_knapsack_problem_01.md) |
9 | | -- [8.7 背包问题知识(二):完全背包问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_07_knapsack_problem_02.md) |
10 | | -- [8.8 背包问题知识(三):多重背包问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_08_knapsack_problem_03.md) |
11 | | -- [8.9 背包问题知识(四):混合背包问题、分组背包问题](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_09_knapsack_problem_04.md) |
| 13 | +- [8.3 线性 DP(一):单串线性 DP](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_03_linear_dp_01.md) |
| 14 | +- [8.4 线性 DP(二):双串线性 DP](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_04_linear_dp_02.md) |
| 15 | +- [8.5 线性 DP(三):矩阵线性 DP、无串线性 DP](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_05_linear_dp_02.md) |
| 16 | +- [8.6 背包问题知识(一):0-1 背包](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_06_knapsack_problem_01.md) |
| 17 | +- [8.7 背包问题知识(二):完全背包](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_07_knapsack_problem_02.md) |
| 18 | +- [8.8 背包问题知识(三):多重背包](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_08_knapsack_problem_03.md) |
| 19 | +- [8.9 背包问题知识(四):混合背包、分组背包](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_09_knapsack_problem_04.md) |
12 | 20 | - [8.10 背包问题知识(五):背包问题变种](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_10_knapsack_problem_05.md)
|
13 | 21 | - [8.11 区间 DP](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_11_interval_dp.md)
|
14 | 22 | - [8.12 树形 DP](https://github.com/itcharge/AlgoNote/tree/main/docs/08_dynamic_programming/08_12_tree_dp.md)
|
|
0 commit comments