hello-algo/docs/chapter_greedy/index.md

23 lines
829 B
Markdown
Raw Normal View History

2023-07-20 18:24:25 +08:00
---
comments: true
icon: material/head-heart-outline
---
2023-08-19 22:07:27 +08:00
# 第 15 章   贪心
2023-07-20 18:24:25 +08:00
2023-11-09 05:13:48 +08:00
![贪心](../assets/covers/chapter_greedy.jpg){ class="cover-image" }
2023-07-20 18:24:25 +08:00
2023-08-03 04:37:52 +08:00
!!! abstract
2023-12-02 06:24:05 +08:00
向日葵朝着太阳转动,时刻追求自身成长的最大可能。
2023-08-03 04:37:52 +08:00
2023-12-02 06:24:05 +08:00
贪心策略在一轮轮的简单选择中,逐步导向最佳答案。
2023-08-03 04:37:52 +08:00
2023-07-20 18:24:25 +08:00
## 本章内容
- [15.1   贪心算法](https://www.hello-algo.com/chapter_greedy/greedy_algorithm/)
- [15.2   分数背包问题](https://www.hello-algo.com/chapter_greedy/fractional_knapsack_problem/)
2023-07-21 15:14:40 +08:00
- [15.3   最大容量问题](https://www.hello-algo.com/chapter_greedy/max_capacity_problem/)
2023-07-21 21:53:04 +08:00
- [15.4   最大切分乘积问题](https://www.hello-algo.com/chapter_greedy/max_product_cutting_problem/)
2023-07-21 22:50:29 +08:00
- [15.5   小结](https://www.hello-algo.com/chapter_greedy/summary/)