I am attempting to calculate the Big-O of the following algorithm but I am confused and require some assistance:
Algorithm 1. DFS(G,n)
Input: G- the graph
n- the current node
1) Visit(n)
2) Mark(n)
3) For every edge nm (from n to m) in G do
4) If m is not marked then
5) Dfs(G,m)
6) End If
7) End For
Output: Depends on the purpose of the search...
I won't even begin to say what I (incorrectly) calculated the solution to be. Can anybody please help me and explain this to me?
Thank you.
EDIT: Apparently my calculation of O(n+m) is correct...can somebody verify this?
EDIT 2: Or is it O(|n|+|m|)?