Function star

Source
pub fn star<G>(n: usize) -> G
where G: Graph + Buildable,
Expand description

Returns a star graph with n rays.

The center node will be the first node. This is equivalent to complete_bipartite(1,n).

If G is a digraph, the source of all edges will be the center node.