Introduction to Algorithms: A Creative Approach defines neighborhood of v as:
$N(v) = {v} \ \bigcup \ \{w \in V | (v, w)\in E\}$.
shouldn't it be $N(v) = \{w \in V | (v, w)\in E\}$.
Introduction to Algorithms: A Creative Approach defines neighborhood of v as:
$N(v) = {v} \ \bigcup \ \{w \in V | (v, w)\in E\}$.
shouldn't it be $N(v) = \{w \in V | (v, w)\in E\}$.
Most commonly, graph theorists refer to the neighborhood set of a vertex $v$ as: $N(v) = \{ w \in V : vw \in E \}$. The closed neighborhood of a vertex, $N[v] = N(v) \cup \{v\}$. It looks like your book is referring to the closed neighborhood.
Note: Here, the terms open and closed are not in a topological context.