Description:

  • A path that returns to the starting node is a Cycle
  • A sequence of vertices such that there exists an edge between any two consecutive vertices for .
  • Travels the edges
  • The length of the path is the number of edges
  • Notes:
    • Simple path: doesn’t contian the same edge more than once
    • On an undirected graph, every path is “reversible”
    • A path can have length 0, self-loop

Euler Path

Hamilton Path