
Last chance! 50% off unlimited learning
Sale ends in
Finds all vertices reachable from a given vertex, or the opposite: all vertices from which a given vertex is reachable via a directed path.
subcomponent(graph, v, mode = c("all", "out", "in"))
The graph to analyze.
The vertex to start the search from.
Character string, either “in”, “out” or
“all”. If “in” all vertices from which v
is reachable
are listed. If “out” all vertices reachable from v
are
returned. If “all” returns the union of these. It is ignored for
undirected graphs.
Numeric vector, the ids of the vertices in the same component as
v
.
A breadh-first search is conducted starting from vertex v
.
# NOT RUN {
g <- sample_gnp(100, 1/200)
subcomponent(g, 1, "in")
subcomponent(g, 1, "out")
subcomponent(g, 1, "all")
# }
Run the code above in your browser using DataLab