C++ 中的顶点类
我对 C++ 中的模板很不擅长。我的要求是创建一个名为 Vertex 的模板类,其中包含包含子顶点编号和边类型的向量对。这个类将是另一个模板化图类的一部分,该类将在 Vertex 类的帮助下进行 DFS 图遍历。
我需要一些帮助来创建两个模板化类...我进一步了解了这一部分。
I am bad when it comes to templates in C++. My requirement is to make a template class called Vertex with a vector pair containing the child vertex number and edge type. This class would be a part of another templatized graph class which would do a DFS graph traversal with the help of Vertex Class.
I need some help in creating both the templatized classes... I am aware of the part further.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 BGL。
也许你可以使用它而不是重新发明轮子。如果没有,请查看来源作为参考。
You can take a look at the BGL.
Maybe you can use it instead of reinventing the wheel. If not look into the sources as a reference.