global optimal
-
Greedy AlgorithmAlgoDS/Algorithm 2020. 1. 22. 12:32
1. Overview 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 a global solution is the best fit for Greedy. Greedy Algorithm is an algorithmic paradigm that builds up a solution piece by pice It always chooses the next piece tha..