我想使用 igraph 函数在图中找到生成树graph.bfs
。你能告诉我怎么做吗?
PS:我尝试使用$father
from 返回值的信息graph.bfs
,但结果让我感到困惑。这是一个例子:
g <- graph(c(1,2,2,6,1,4,4,6,5,6,1,5,5,3,3,4), directed=FALSE)
plot(g)
tmp <- graph.bfs(g, root=1, neimode='all', order=TRUE, father=TRUE,callback=f)
结果是:
tmp$order = 1 2 4 5 6 3
和tmp$father=0 1 4 1 1 2
我可以使用该$father
信息查找所有生成树吗?