Let $\Delta$ denote the maximum degree of a graph, $$ \Delta = \max_u n_u. $$
In layman terms, what is this definition saying and what does it mean by maximum and minimum degree?
(This is part of a programming question involving connected graphs)
Let $\Delta$ denote the maximum degree of a graph, $$ \Delta = \max_u n_u. $$
In layman terms, what is this definition saying and what does it mean by maximum and minimum degree?
(This is part of a programming question involving connected graphs)
Without more context it's hard to guess exactly, but I think if you have a graph $G$ with vertices $V = \{v_1, \ldots, v_n\}$, we can define the degree of each vertex as the number of edges in $G$ adjacent to it.
Then, maximum and minimum degree are the max and min of the set of degrees for every vertex.
UPDATE - EXAMPLES