You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/chapter_greedy/index.md

27 lines
875 B

1 year ago
---
comments: true
icon: material/head-heart-outline
---
1 year ago
# 第 15 章   贪心
1 year ago
<div class="center-table" markdown>
1 year ago
![贪心](../assets/covers/chapter_greedy.jpg){ width="600" }
1 year ago
</div>
1 year ago
!!! abstract
向日葵朝着太阳转动,时刻都在追求自身成长的最大可能。
1 year ago
贪心策略在一轮轮的简单选择中,逐步导向最佳的答案。
1 year ago
1 year ago
## 本章内容
- [15.1 &nbsp; 贪心算法](https://www.hello-algo.com/chapter_greedy/greedy_algorithm/)
- [15.2 &nbsp; 分数背包问题](https://www.hello-algo.com/chapter_greedy/fractional_knapsack_problem/)
1 year ago
- [15.3 &nbsp; 最大容量问题](https://www.hello-algo.com/chapter_greedy/max_capacity_problem/)
1 year ago
- [15.4 &nbsp; 最大切分乘积问题](https://www.hello-algo.com/chapter_greedy/max_product_cutting_problem/)
1 year ago
- [15.5 &nbsp; 小结](https://www.hello-algo.com/chapter_greedy/summary/)