使用 BGL 图实现 Dijkstra 算法
我正在尝试使用 OMNET++ 中的 BGL 库实现 Dijkstra 的最短路径算法。
在这样做的过程中,我发现我们需要 Graphviz DOT 文件。
如何使用 graphviz 为算法创建 DOT 文件?
I am trying to implement Dijkstra's shortest path algorithm using BGL libraries in OMNET++
In course of doing so, I came across we need Graphviz DOT file for the same.
How do I create DOT file for the algorithm using graphviz?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以非常轻松地手动创建 DOT 文件。文件格式相当简单,并在 Wikipedia 和 graphviz 网站。
这是一个简单的非循环有向图的示例。
You can create DOT files by hand pretty easily. The file format is fairly simple and documented on Wikipedia and on the graphviz website.
Here's a sample of a simple acyclic directed graph.