Usage examples of greedy algorithms?

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

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

10条回答
  •  日久生厌
    2021-02-02 16:25

    Minimum Spanning Tree - Prim's algorithm and Kruskal's algorithm

    Shortest Path Calculation - Dijkstra's algorithm

    More: (Fractional Knapsack Problem, Huffman Coding, Optimal Merging, Topological Sort).

提交回复
热议问题