我该如何解决克鲁斯卡尔的工会问题
我尝试过浏览该图并将某个 ID 的每个实例更改为更新的 ID,但它仍然导致循环。 非循环解的计划是什么?
I have tried going through the graph and changing every instance of some ID into a newer ID and it still led to a cycle.
What is plan to solve for an acyclic solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在克鲁斯卡尔算法中添加新边时,永远不应该出现循环。如果您要添加一条将同一组件连接到其自身的边,则可以跳过该边。您将永远得到循环,因为它不是最小生成树
You should never get cycles when adding new edges in the Kruskal's algorithm. If you are adding an edge that connects the same component to itself, you skip that edge. You will never get cycles because it won't be a minimal spanning tree