Learn R Programming

ggm (version 2.2)

bfsearch: Breadth first search

Description

Breadth-first search of a connected undirected graph.

Usage

bfsearch(amat, v = 1)

Arguments

amat
a symmetric matrix with dimnames specifying the adjacency matrix of the undirected graph
v
an integer, indicating the starting node of the search. Defaults to the first node.

Value

  • treethe edge matrix of the resulting spanning tree
  • branchesa matrix with two columns, giving the indices of the branches of the spanning tree
  • chordsa matrix with two columns, giving the indices of the chords of the spanning tree

Details

Breadth-first search is a systematic method for exploring a graph. The algorithm is taken from Aho, Hopcroft & Ullman (1983).

References

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.

See Also

UG, findPath, cycleMatrix

Examples

Run this code
## 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