翻译后的内容: Guava: 图的拷贝构造函数

huangapple go评论66阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2020年4月4日 18:51:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/61026992.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定