Usage examples of greedy algorithms?

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

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

10条回答
  •  醉话见心
    2021-02-02 16:20

    What is the use of greedy algorithms?

    Greedy algorithms is choosing the best/optimal solution in each stage. Look at wikipedia article

    An real example?

    Minimum spanning tree algorithms are greedy algorithms

    • Prim's algorithm
    • Kruskal algorithm
    • Reverse-Delete Algorithm

    The famous Dijkstra's Algorithm is also greedy algorithm

提交回复
热议问题