Definition

It is a Graph where the edges form a circle. That is, if we follow ever edge, we should return at the starting node.

  • If vertices then the edges are .
  • They are always regular.
graph LR
    A((A)) o--o B((B))
    B o---o C((C))
    C o---o D((D))
    D o---o A
  • It is a Walk that starts and ends at the same vertex, but does not repeat vertices.