Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best book for a student learning about concepts such as NP-hard, NP-complete and P=?NP?

I've already got the CLR but it doesn't really cover these particular topics as thoroughly.

share|improve this question
(re: close vote) I wouldn't call complexity books a subject that "usually leads to confrontation and argument". It's not emacs vs. vi. – rjh Mar 26 '10 at 19:21

closed as not constructive by Bill the Lizard May 13 at 22:41

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

Any textbook on computability and complexity would be useful. Introduction to the Theory of Computation by Sisper is a good one.

Also there are lots of good resources if you google those terms - this is a common undergrad course and many professors post class notes online.

share|improve this answer

Introduction to Algorithms by Thomas Cormen is a very good book on Algorithms and also there is The Algorithm Design Manual

share|improve this answer
Introduction to Algorithms is very good. – Ralf Apr 9 '10 at 8:56

Computers and Intractability: A Guide to the Theory of NP-Completeness by Michael Garey and David S. Johnson. is a classic (1979).

share|improve this answer

Introduction to Algorithms has a very good chapter on NP-completeness and tractability, and it's the one I usually recommend to my students.

Garey & Johnson's guide is basically list of the known NP-complete problems, and while certainly useful as a reference book, I wouldn't recommend it as an introduction.

share|improve this answer

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