如何获取图中的所有子图?
如何用伪代码从图中获取固定大小的所有子图? (暴力)
如果可能的话,无需外部库。谢谢!
How to obtain all the subgraphs of a fixed size from a graph, in pseudocode? (brute force)
Without external libraries if possible. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或多或少是这样的:
编辑:修复了“edges.insert”行的缩进
编辑:删除了重复的图表
More or less that would be something along these lines:
EDIT: Fixed indentation of 'edges.insert' line
EDIT: Removed duplicated graphs
由于图只有边和顶点,因此找到顶点的所有可能的子集并在它们上构造边的所有可能的子集。
Since a graph is only edges and vertices, find all possible subsets of the vertices and construct all possible subsets of the edges on them.
如果您使用增强子图,我有一个以下解决方案来迭代所有子图并准备其向量。
If you are using in terms of boost subgraph i have a follwing solution to iterate all subgraphs and prepare its vector.