powered by
Breadth-first search of a connected undirected graph.
bfsearch(amat, v = 1)
the edge matrix of the resulting spanning tree
a matrix with two columns, giving the indices of the branches of the spanning tree
a matrix with two columns, giving the indices of the chords of the spanning tree
a symmetric matrix with dimnames specifying the adjacency matrix of the undirected graph
an integer, indicating the starting node of the search. Defaults to the first node.
Giovanni M. Marchetti
Breadth-first search is a systematic method for exploring a graph. The algorithm is taken from Aho, Hopcroft & Ullman (1983).
Aho, A.V., Hopcrtoft, J.E. & Ullman, J.D. (1983). Data structures and algorithms. Reading: Addison-Wesley.
Thulasiraman, K. & Swamy, M.N.S. (1992). Graphs: theory and algorithms. New York: Wiley.
UG, findPath, cycleMatrix
UG
findPath
cycleMatrix
## Finding a spanning tree of the butterfly graph bfsearch(UG(~ a*b*o + o*u*j)) ## Starting from another node bfsearch(UG(~ a*b*o + o*u*j), v=3)
Run the code above in your browser using DataLab