Constructing Eulerian Trails in a Graph

In graph theory, an Eulerian trail (or Eulerian path) is a trail in a finite graph that visits every edge exactly once (allowing for revisiting vertices). Similarly, an Eulerian circuit or Eulerian cycle is an Eulerian trail that starts and ends on the same vertex.

Parameters

  • VV: number of vertices
  • EE: number of edges

Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 3 of 3 algorithms

See more
Fleury's algorithm + Thorup2000O(Elog3(E)loglogE)O(E \log^3(E) \log\log E)O(E)O(E)
Fleury's algorithm + Tarjan1974O(E2)O(E^2)O(E)O(E)
Hierholzer's algorithm1873O(E)O(E)O(E)O(E)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Insuffient Data to display table