给定必须包含的边的最小生成树计数

发布于 2024-10-22 09:50:21 字数 196 浏览 9 评论 0原文

我对最小生成树的一般形式感到困惑,其中包含不属于最小生成树的边e。我的问题是:

G为一个加权图,所有边的权重都等于1。G的MST不包括边e 。在包含边 e 的约束下,可以创建多少个 MST?

I am confused about the general form of a minimum spanning tree that includes an edge e that is not part of the minimum spanning tree. My question is:

Let G be a weighted graph with all the edges weight equal to 1. The MST of G does not include an edge e. How many MSTs can be made with the constraint that they include edge e ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘心安 2024-10-29 09:50:21

当图未加权时,任何生成树都是最小生成树

相同的权重1可以被认为与未加权相同。

在图论数学领域基尔霍夫定理或以基尔霍夫矩阵树定理命名Gustav Kirchhoff 是关于图中生成树数量的定理。

数量(MST,包括e)=数量(所有MST) 1 ; -数量(没有e的MST) 2 ;

<1>可以通过基尔霍夫定理导出,并且

<2>从图中删除 e 后,可以通过基尔霍夫定理导出。

When a graph is unweighted, any spanning tree is a Minimum Spanning Tree.

Identical weight of 1 can be considered the same as unweighted.

In the mathematical field of graph theory Kirchhoff's theorem or Kirchhoff's matrix tree theorem named after Gustav Kirchhoff is a theorem about the number of spanning trees in a graph.

Number (MST including e) = Number (All MST)<1> - Number (MST without e)<2>

<1> can be derived by Kirchhoff's theorem, and

<2> can be derived by Kirchhoff's theorem after removing e from the graph.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文