Greedy Algorithm

Revision as of 06:08, 10 October 2013 by DANCH (talk | contribs) (Created page with "A Greedy Algorithm is one that always chooses the best immediate option. The advantage is that it usually makes decisions simpler, but it may create problems in the long run. It ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A Greedy Algorithm is one that always chooses the best immediate option. The advantage is that it usually makes decisions simpler, but it may create problems in the long run. It is useful for making programs that don't take long to run. Do not use it in your everyday life.

See Also

Wikipedia's Page on Greedy Algorithm