We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e71ccf6 commit 6465913Copy full SHA for 6465913
Algorithm/algorithm-ch.md
@@ -28,6 +28,7 @@
28
- [树的深度](#%E6%A0%91%E7%9A%84%E6%B7%B1%E5%BA%A6)
29
- [动态规划](#%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92)
30
- [斐波那契数列](#%E6%96%90%E6%B3%A2%E9%82%A3%E5%A5%91%E6%95%B0%E5%88%97)
31
+ - [0 - 1背包问题](#0---1%E8%83%8C%E5%8C%85%E9%97%AE%E9%A2%98)
32
- [最长递增子序列](#%E6%9C%80%E9%95%BF%E9%80%92%E5%A2%9E%E5%AD%90%E5%BA%8F%E5%88%97)
33
34
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@@ -753,7 +754,7 @@ function fib(n) {
753
754
fib(10)
755
```
756
-##0 - 1背包问题
757
+## 0 - 1背包问题
758
759
该问题可以描述为:给定一组物品,每种物品都有自己的重量和价格,在限定的总重量内,我们如何选择,才能使得物品的总价格最高。每个问题只能放入至多一次。
760
0 commit comments