Graph Theory Notes
Graph Theory Notes
5.1. Graphs:
- Definition: A graph G = (V, E) consists of a set of vertices V and edges E connecting them.
- Representation:
1. Adjacency List: Uses lists for each vertex storing adjacent vertices.
- Cycle: A path where the start and end vertices are the same.
- Wheel Graph: A cycle with an additional central vertex connected to all others.
- Regular Graph: A graph where all vertices have the same degree.
- Bipartite Graph: Graph where vertices can be divided into two independent sets.
- Graph Coloring: Assigning colors to vertices ensuring no two adjacent vertices share the same
color.
5.5. Trees:
- Tree Traversals: