7 - Graphs Flashcards
What is a “complete” graph?
When every vertex is connected to every other vertex by exactly one edge
What is a “simple” graph
Has no multiple edges and no vertex is joined to itself
What is a “connected” graph?
When all pairs of vertices are connected
What is a “subgraph”?
A graph formed by using only some of the edges of the original graph
What is a “tree” graph?
connected graph for which it is not possible to find a sequence of distinct edges that returns to the starting vertex
What is a “walk”?
Sequence of adjacent edges
What is a “trail”?
Walk with no repeated edges
What is a “path”?
Walk with no repeated vertices
What is a “cycle”?
Walk that starts and ends at the same vertex and has no other repeated vertices
What is a “circuit”?
Walk that starts and ends at the same vertex and has no repeated edges
What is the differences between a cycle and a circuit?
Both:
- a Walk
- Start and end at same vertex
Difference:
- Cycle has no repeated vertices
- Circuit has no repeated edges