I'm new to DFS and just learned that the time complexity of DFS will be O(V+E) if using an adjacency list. I was wondering what the time complexity of DFS would be if back edges were included, as back edges require the search to backtrack to previously discovered nodes.
I tried searching this up online but I can't seem to find a good answer for this.