Graph walk

A walk of a graph is a sequence of vertices such that each adjacent pair of vertices in the sequence is connected by an edge in the graph.

This is a fancy way of saying that a walk is just a line you can draw on the graph without lifting your pen from the paper.

Visiting vertices and edges

flashcards

QuestionAnswer
WalkDefinition: A sequence of vertices where each adjacent pair is connected by an edge in the graph.
How is a walk described intuitively?A line you can draw on the graph without lifting your pen from the paper.
Can you visit the same vertex multiple times in a walk?Yes, you can visit the same vertex multiple times.
Can you traverse the same edge multiple times in a walk?Yes, you can traverse the same edge multiple times.