约束度的算法 +有界直径最小生成树?

发布于 2024-09-11 21:45:56 字数 230 浏览 8 评论 0原文

假设我有 3 种限制来计算生成树:

  1. 约束度(例如: 生成树可能只 连接最多 3 个其他节点)
  2. 有界直径(例如:所有边' 权重一旦相加,就不能超过 100).
    2.1.如果可能,显示满足此条件的所有子树。
  3. 有没有

什么好的算法可以解决这个问题,而且不会让我发疯?我将不得不使用相当大的输入(1000+ 个节点)来运行它,因此它的复杂性也不能太高。

Suppose I have 3 kinds of restrictions to computing a spanning tree:

  1. Constrained degree (eg: a node in
    a spanning tree may only be
    connected up to 3 other nodes)
  2. Bounded diameter (eg: all edges'
    weights, once summed, cannot exceed
    100).
    2.1. If possible, show all subtrees that meet this criteria.
  3. Both

Are there any good algorithms to solve this that aren't gonna drive me insane? I'm gonna have to run this with rather large inpputs (1000+ nodes), so its complexity can't be too high either.

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

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

发布评论

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

评论(1

橘香 2024-09-18 21:45:56

度约束生成树问题是 NP 完全问题。请参阅 http://en.wikipedia.org/wiki/Degree-constrained_spanning_tree
因此,没有好的(即多项式)算法。不过,有一些近似算法。

谷歌搜索似乎表明有界直径生成树问题同样困难。

The degree-constrained spanning tree problem is NP-complete. See http://en.wikipedia.org/wiki/Degree-constrained_spanning_tree .
So, no good (i.e., polynomial) algorithms. There are approximation algorithms, though.

A Google search seems to indicate that the bounded diameter spanning tree problem is equally hard.

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