powered by
Get the indices of the vertices in the largest connected component of a graph from its adjacency matrix.
get_largest_component(adj_mat)
A vector of indices corresponding to the vertices in the largest connected component.
An adjacency matrix of a graph.
adj_mat <- matrix(c(0, 1, 0, 0, 0, 0, 0, 0, 0), nrow = 3) get_largest_component(adj_mat)
Run the code above in your browser using DataLab