Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 289 Bytes

Greedy.md

File metadata and controls

2 lines (2 loc) · 289 Bytes

Greedy Algorithms

Greedy is an algorithmic paradigm that builds up a solution piece by piece, always choosing the next piece that offers the most obvious and immediate benefit. So the problems where choosing locally optimal also leads to global solution are the best fit for Greedy.