Skip to content

Latest commit

 

History

History
15 lines (7 loc) · 434 Bytes

greedy-algorithm.md

File metadata and controls

15 lines (7 loc) · 434 Bytes

Greedy Algorithm - 贪心算法

贪心法就是遵循某种规则,不断贪心地选取当前最优策略的算法设计方法。解题过程中寻找这种“当前最优策略”是关键所在,且实现往往比动态规划算法要简单高效。

解题重点

OJ题目

3617 3069 3253

Reference

1.Greedy algorithm - From Wikipedia, the free encyclopedia