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! :)
|
feedback
|
|
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. | |||||||
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. | |||
|
feedback
|