英文:
Guava: Copy-Constructor for graphs
问题
我正在寻找Guava图中的拷贝构造函数。到目前为止,我尝试了以下代码:
copy = GraphBuilder.from(g).build();
"from(..)" 只会复制图的属性(有向/无向),而不会复制边/顶点。
我正在寻找一个真正包含顶点/边的拷贝。Guava是否支持这个功能?
英文:
I'm searching for a copy-constructor for graphs in guava. So far I've tried this:
copy = GraphBuilder.from(g).build();
"from(..)" only copies the properties (directed/undirected) of the graph, not the edges/vertices.
I'm searching for an actual copy with vertices/edges. Does guava support this?
答案1
得分: 2
听起来你正在寻找 Graphs.copyOf。
英文:
It sounds like you're looking for Graphs.copyOf.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论