Graphs are a mathematical model comprising a set of vertices and a set of edges.
G = (V, E)
where V is a set of vertices and E is a set of edges.
In class, someone asked a question about gaming and graphs/trees. I couldn't think of the term, but this is what I was trying to describe: Behavior Trees).
edges do not have a direction; (A, B) is the same as (B, A)
edges point in a specific direction; from one vertex to another
edges have an associated weight/cost
two vertices are adjacent if they are connected by an edge
an edge is incident to a vertex if it is connected to the vertex
the degree of a vertex is counted as its number of incident edges
(for directed graphs) the number of edges pointing to a given vertex
(for directed graphs) the number of edges pointing away from a given vertex
a sequence of vertices (v_1, v_2, ..., v_k) where there exists an edge connected each adjacent vertex ((v_1, v_2), (v_2, v_i), ..., (v_j, v_k)) and there are not repeated edges
a path where the first and last vertex are the same
a graph that does not contain any cycles
(for undirected graphs) a graph in which all vertices are connected by a path
(for directed graphs) a graph in which all vertices are connected by a path
(for directed graphs) a graph in which all vertices are connected if edges are replaced with undirected edges
a directed, acyclic graph that is connected and has a special vertex known as the root
shorthand for a directed, acyclic graph
a graph with an edges between every pair of vertices