Usage examples of greedy algorithms?

后端 未结 10 2009
孤城傲影
孤城傲影 2021-02-02 15:36

What is the use of greedy algorithms? An real example?

10条回答
  •  暖寄归人
    2021-02-02 16:14

    Anything where an optimal solution would be impossible - or very very hard.

    Greedy algorithms take the best solution at the current point, even if that's not the best solution if you examined all aternatives

提交回复
热议问题