在 C# 中创建具有边容量的有向图的库
是否有可用于创建有向图的库或类,其边也支持容量? (或者我必须自己创建它?)。
我想测试我最近学到的最大流量算法
Is there a library or class available to create directed graphs, who's edges support capacity too? (Or I have to create it my self?).
I want to test max flow algorithm I recently learned
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
包含图形在内的许多数据结构的库是NGenerics ( >点网2.0)
链接:http:// code.google.com/p/ngenerics/
代码项目页面: http://www.codeproject.com/KB/recipes/DotNet2Datastructs.aspx< /a>
Microsoft 的图形类(带有加权边)- 使用 C# 2.0 对数据结构进行广泛检查
Chris Forbes 在 .Net 2.0 中的图形类(带有用户定义的边缘数据) - 克里斯·福布斯图课
A library with many data structures including Graphs is NGenerics (Dot Net 2.0)
Link: http://code.google.com/p/ngenerics/
Codeproject Page: http://www.codeproject.com/KB/recipes/DotNet2Datastructures.aspx
Graph class by Microsoft (with weighted edges) - An Extensive Examination of Data Structures Using C# 2.0
Graph Class by Chris Forbes in .Net 2.0 (with user defined edge data) - Chris Forbes Graph Class