1. Computer Science Engineering (CSE)
  2. Design and Analysis of Algorithms
  3. What is the time complexity for finding ...
Q.

What is the time complexity for finding a Hamiltonian path for a graph having N vertices (using permutation)?

A. o(n!)
B. o(n! * n)
C. o(log n)
D. o(n)
Answer» B. o(n! * n)
Explanation: for a graph having n vertices traverse the permutations in n! iterations and it traverses the permutations to see if adjacent vertices are connected or not takes n iterations (i.e.) o(n! * n).

Discussion