in Algorithms
245 views
0 votes
0 votes
Let G = (V, E) with |V | = n and |E| = m. What is the worst-case complexity of:

(a) BFS using an adjacency matrix representation of G. O($n^2$ )

(b) BFS using an adjacency list representation of G. O(n + m)

(c) DFS using an adjacency matrix representation of G. O($n^2$ )

(d) DFS using an adjacency list representation of G. O(n + m)
in Algorithms
245 views

1 comment

All the options are correct.
0
0

Please log in or register to answer this question.

Related questions