World's most popular travel blog for travel bloggers.

Which NP-Complete problem has the fastest known algorithm?

, , No Comments
Problem Detail: 

In terms of worst-case asymptotic runtime, which NP-complete problem has the fastest-known (exact) algorithm and what is the algorithm? Is there something known that is faster than $O(n^2*2^n)$?

Asked By : Wuschelbeutel Kartoffelhuhn

Answered By : Pål GD

Vertex Cover has an algorithm running in time $1.2738^k + nk$, and is thus faster than $2^n n^2$, even with $k=n$. You can check out Table of FPT races for a short list of FPT running times of different problems. Here, $n$ is the number of vertices and $k$ is the solution size.

Also, the question Are there subexponential-time algorithms for NP-complete problems? addresses similar questions.

Best Answer from StackOverflow

Question Source : http://cs.stackexchange.com/questions/24395

0 comments:

Post a Comment

Let us know your responses and feedback