是否有支持高效编辑的 DAG 数据结构?

发布于 2024-12-12 09:45:09 字数 104 浏览 0 评论 0原文

我正在寻找一种可以存储任何 DAG 的数据结构,但可以有效地(即,边/顶点数量呈次线性)检测添加边是否会创建循环(从而防止您破坏非循环不变量) )。有谁知道这样的事情吗?

谢谢!

I'm looking for a data structure that will store any DAG, but can efficiently (i.e., sub-linearly in the number of edges/vertices) detect if adding an edge would create a cycle (and thus prevent you from breaking the acyclic invariant). Does anyone know of such a thing?

Thanks!

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

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

发布评论

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

评论(1

眼角的笑意。 2024-12-19 09:45:09

您可以维护有关图的传递闭包的数据结构。然后检查添加边是否会导致循环是在恒定时间内完成的;如果要添加边 (i,j),请检查是否已经存在从 j 到 i 的路径。然而,更新数据结构一般来说成本可能更高(参见例如 La Poutré 和 van Leeuwen )。

You could maintain a datastructure about the graph's transitive closure. Then checking whether adding an edge causes cycles is done in constant time; if you want to add edge (i,j), check if there is already a path from j to i. However, updating the datastructure could be more costly in general (see e.g. La Poutré and van Leeuwen).

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