I managed to create an algorithm that finds an eulerian path(if there is one) in an undirected connected graph with time complexity O(k^2 * n) where:
k: number of edges
n: number of nodes
I would like to know if there is a better algorithm, and if yes the idea behind it.
Thanks in advance! :)