mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 12:56:32 +08:00
22 lines
629 B
Markdown
22 lines
629 B
Markdown
---
|
|
comments: true
|
|
icon: material/head-heart-outline
|
|
---
|
|
|
|
# 第 15 章 贪心
|
|
|
|
![贪心](../assets/covers/chapter_greedy.jpg){ class="cover-image" }
|
|
|
|
!!! abstract
|
|
|
|
向日葵朝着太阳转动,时刻追求自身成长的最大可能。
|
|
|
|
贪心策略在一轮轮的简单选择中,逐步导向最佳答案。
|
|
|
|
## 本章内容
|
|
|
|
- [15.1 贪心算法](greedy_algorithm.md)
|
|
- [15.2 分数背包问题](fractional_knapsack_problem.md)
|
|
- [15.3 最大容量问题](max_capacity_problem.md)
|
|
- [15.4 最大切分乘积问题](max_product_cutting_problem.md)
|
|
- [15.5 小结](summary.md)
|