Greedy Algorithm

Greedy Algorithm is an algorithm design technique that choose locally optimal choice at each stage, or simply “take what you can get now”. It will produce not necessary an optimal solution but an approximate answer.

The following algorithms use this strategy to solve problems:

Links to this page
#algorithm