本文介绍了使用Kruskal算法找到图的最小生成树的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

,我需要在其中找到G的最小生成树使用 Prim的 Kruskal的算法。

Here is a Graph where I need to find the minimum spanning tree of G using Prim's and Kruskal's algorithms.

我使用Prim的算法找到了最小生成树。 。

I found the minimum spanning tree using Prim's algorithm. Here is my attempt.

使用Kruskal算法很难找到最小生成树。我看过许多与Kruskal图算法有关的视频,但最终得到了与Prim算法相同的图。

I am having difficulty in finding the minimum spanning tree using Kruskal's algorithm. I have seen many videos related to Kruskal's graph algorithm but I ended up getting the same graph as Prim's algorithm.

有人可以告诉我如何找到最小的生成树吗?

Can anyone please show me how to find the minimum spanning tree of the graph using Kruskal's algorithm?

推荐答案

由于您的图具有所有不同的边缘权重,因此您将始终获得相同的答案

As your graph has all distinct edge weights, you will always get the same answer.

这篇关于使用Kruskal算法找到图的最小生成树的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-09 18:09