getComponents: Connected components of a graph

Description Usage Arguments Value Examples

Description

The getComponents function returns all the connected components of a graph.

Usage

1
getComponents(nodes, arcs)

Arguments

nodes

vector containing the nodes of the graph, identified by a number that goes from 1 to the order of the graph.

arcs

matrix with the list of arcs of the graph. Each row represents one arc. The first two columns contain the two endpoints of each arc and the third column contains their weights.

Value

getComponents returns a list with all the components and the nodes of each one ($components) and a matrix with all the arcs of the graph and its component ($components.arcs).

Examples

1
2
3
4
5
# Graph
nodes <- 1:4
arcs <- matrix(c(1,2,1, 1,6,1, 3,4,1, 4,5,1), ncol = 3, byrow = TRUE)
# Components
getComponents(nodes, arcs)

optrees documentation built on May 2, 2019, 8:15 a.m.