I'm new to NP completeness and spent hours thinking of this irritating fact, here it goes like this. In P, NP and NPC problems we consider only whether there's a polynomial time solution for the problem. but an algorithm that solves a given problem doesn't necessarily need to have polynomial time complexity. (e.g. assume that we are solving Knapsack problem using recursive method which takes exponential time)

Then someone please tell me whether we accept the given algorithm is NP or NPC since the time complexity is not polynomial.

link|improve this question
See cstheory.stackexchange.com – Jonas Dec 1 '11 at 4:02
In a nutshell, the recursive exponential algorithm becomes polynomial on a non-deterministic machines because an NP machine can pursue the exponential explosion of possibilities "simultaneously". – phs Dec 1 '11 at 4:07
3  
This is off-topic for cstheory (not research-level). – Per Dec 1 '11 at 4:15
feedback

closed as off topic by Jonas, Lasse V. Karlsen Dec 1 '11 at 4:41

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

This is a CS theory question, so not really on topic for this forum. But here goes anyway....

Briefly, P is the set of problems for which there exists algorithms that find solutions in time proportional to some polynomial function of the input size. NP is the set of problems for which there exist algorithms to check in polynomial time that a given solution is indeed a solution. It stands for "nondeterministic polynomial time" — the nondeterministic part is that somehow you are magically given a solution. (Note that checking a solution once it is handed to you is generally easier than finding a solution. In NP, only the checking part needs to be polynomial.) NPC (NP-complete) is a special subset of NP problems for which any problem in NP can be transformed in polynomial time to a problem in NPC. That such a subset even exists is an important discovery of complexity theory.

Here's some further reading at Wikipedia:

link|improve this answer
feedback

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