When should I use Kruskal as opposed to Prim (and vice versa)?

后端 未结 10 1365
小鲜肉
小鲜肉 2020-12-04 04:27

I was wondering when one should use Prim\'s algorithm and when Kruskal\'s to find the minimum spanning tree? They both have easy logics, same worst cases, and only differenc

10条回答
  •  自闭症患者
    2020-12-04 05:18

    The best time for Kruskal's is O(E logV). For Prim's using fib heaps we can get O(E+V lgV). Therefore on a dense graph, Prim's is much better.

提交回复
热议问题