1.0 - Graphs

Graphs are comprised of vertices and edges.

Could be used to represent different types of information

1.1 - Directed or Undirected Graphs

1.1.1 - Undirected Graphs

- The `degree` of a vertex $v$ is the number of edges incident upon it. - Maximum number of edges $\sum^{n-1}_{i=1}i=\frac{n(n-1)}{2}$ (as every vertex can have an edge to every other edge).

1.1.2 - Directed Graphs

1.2 - Weighted or Unweighted Graphs

1.2.1 - Unweighted Graphs

1.2.2 - Weighted Graph

1.3 - Paths

For a graph G=(V,E)G=(V, E)

1.4 - Undirected Graphs - More Properties

What are the minimum and maximum number of edges in a:

1.5 - Directed Graphs - More Properties

A directed graph G=(V,E)G=(V, E) is:

1.6 - Graph Terminology