Back

star-graph (clj)

(source)

function

(star-graph n)
Return the star graph The star graph consists of one center node connected to n outer nodes. Parameters ---------- n : int node labels are 0 to n with center 0. Notes ----- The graph has n+1 nodes for integer n.

Examples