Why are the running times of BFS and DFS O(V+E), especially when there is a node that has a directed edge to a node that can be reached from the vertex, like in this example in the following site

http://www.personal.kent.edu/~rmuhamma/Algorithms/MyAlgorithms/GraphAlgor/depthSearch.htm

link|improve this question
feedback

3 Answers

Consider a graph with vertices v1, v2, ..., vn and edges (v1,v2), (v2,v3), ..., (vn-1, vn). In this case, BFS and DFS both must visit each node and each edge in order to list vn; ergo, the worst-case running time ("big-Oh") must be at least O(V+E). A simple argument can be used to show that a good implementation of these algorithms does not need asymptotically more than that. So it must be O(V+E).

link|improve this answer
feedback

E is the set of all edges in the graph, as G={V,E}. So, |E| is count of all edges in the graph.

This alone should be enough to convince you that the overall complexity can't be |V| times |E|, since we are not iterating over all the edges in the graph for each vertex.

In the adjacency list representation, for each vertex v, we only traverse those nodes which are adjacent to it.

The |V| factor of the |V|+|E| seems to come from the number of queue operations done.

Note that the complexity of the algorithm depends on the data structure used. effectively we are visiting each piece of information present in the representation of the graph, which is why for matrix representation of the graph, complexity becomes V squared.

Quoting from Cormen,

"The operations of enqueuing and dequeuing take O(1) time, so the total time devoted to queue operations is O( V). Because the adjacency list of each vertex is scanned only when the vertex is dequeued, each adjacency list is scanned at most once. Since the sum of the lengths of all the adjacency lists is Θ(E), the total time spent in scanning adjacency lists is O( E). The overhead for initialization is O( V), and thus the total running time of BFS is O( V + E)."

link|improve this answer
feedback

The way this algorithm works is by visiting every node from all the vertexes and since O(V+E) is the worst case of the algorithm meaning it has to visit every node through every vertex.

You may want to read up on Big-Oh notation

link|improve this answer
why it is not (VE) since when i dequeue a node i test itsadjacent nodes – miss24 Jul 27 '11 at 20:05
link is a proof – CSgoose Jul 27 '11 at 20:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.