Which one of the above books would you recommend reading? Please mention which one would you recommend and also why would you recommend it.

Thanks! :)

link|improve this question

46% accept rate
feedback

2 Answers

up vote 21 down vote accepted

I would highly recommend both.

Introduction to Algorithms is a comprehensive overview of the basic algorithms and data structures and the analysis of them. If you go through this you'll have the same algorithmic toolkit as an MIT computer science graduate.

The Algorithm Design Manual is about how to use those tools; when you see a problem, what is the likely running time of your solution, what known algorithms do you base your solution on, and how do you use them as a starting point to craft it?

Basically, Introduction to Algorithms is theory and The Algorithm Design Manual is practice. They're both excellent books.

link|improve this answer
Thanks for your explicit answer!:D I`d give your answer a vote up but I don`t have the necessary reputation yet :) – zalman Apr 16 '11 at 20:54
2  
@user697334 - you can accept it as the correct answer (which also gives you rep). The only other thing i would add is that Skeena is very readable where you wouldn't exactly curl up with CLR – Martin Beckett Apr 18 '11 at 0:55
feedback

Introduction to Algorithms is verbose, covers the basics well and in depth.

In my opinion, the Algorithm Design Manual is something you read after you understand the stuff in Introduction to Algorithms. A large part of the Design Manual consists of a collection of different fundamental but advanced algorithms and the problems they have been designed to solve.

I've read both, and I've programmed algorithms for 10 years. I still open the Design Manual now and then, but don't read books like Intro to Algorithms any more. From my personal perspective, Design Manual has a longer tail when it comes to usefulness.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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