C# 中检测有向图中循环的简单实现

发布于 2024-11-16 08:20:54 字数 236 浏览 3 评论 0原文

我想知道您是否可以帮助我实现一个简单的实现,用于在 C# 中检测有向图中的循环。

我读过算法,但我'我想找到一些已经实现的东西,非常简单和简短。

我不关心性能,因为数据大小是有限的。

I wonder if you could help me with a simple implementation for detecting cycles in a directed graph in C#.

I've read about the algorithms but I'd like to find something already implemented, very simple and short.

I don't care about the performance because the data size is limited.

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

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

发布评论

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

评论(2

你另情深 2024-11-23 08:20:54

查看 QuickGraph - 它实现了很多算法,并且是一个非常好用的库。

Check out QuickGraph - it has loads of the algorithms implemented and it's quite a nice library to use.

笑脸一如从前 2024-11-23 08:20:54

在 G 上运行 DFS 并检查后端。

在您展开的每个节点上,只需检查它是否已经在当前路径中。

Run a DFS on G and check for backedges.

At every node you expand just check if it is already in the currrent path.

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