This commit is contained in:
krahets
2023-07-16 04:18:52 +08:00
parent c342ba3ced
commit edcd1e5c10
21 changed files with 475 additions and 67 deletions

View File

@@ -2,11 +2,11 @@
comments: true
---
# 13.5.   完全背包问题
# 14.5.   完全背包问题
在本节,我们先求解 0-1 背包的一个变种问题:完全背包问题;再了解完全背包的一种特例问题:零钱兑换。
## 13.5.1.   完全背包问题
## 14.5.1.   完全背包问题
!!! question
@@ -325,7 +325,7 @@ $$
[class]{}-[func]{unboundedKnapsackDPComp}
```
## 13.5.2.   零钱兑换问题
## 14.5.2.   零钱兑换问题
背包问题是一大类动态规划问题的代表,其拥有很多的变种,例如零钱兑换问题。
@@ -719,7 +719,7 @@ $$
[class]{}-[func]{coinChangeDPComp}
```
## 13.5.3.   零钱兑换问题 II
## 14.5.3.   零钱兑换问题 II
!!! question