vote up 11 vote down star
14

I know what algorithms are, but I have never consciously used or created one for any of the programming that I have done. So I'd like to get a book about the subject - I'd prefer if it was in python but that's not a strict requirement. What book about algorithms helped you most to understand, use, and create algorithms?

One book per answer so they can be voted on...

flag

Duplicate. See stackoverflow.com/questions/252985/…. – S.Lott Nov 19 '08 at 15:43
I wouldn't call it an exact duplicate. Thanks for linking to it though -- I did search before posting. I think these answers are a bit better. – sheats Nov 19 '08 at 16:16
Since every single program is the implementation of (at least one) algorithm, be it ever so simple, you either do not know what algorithms are or have never done any programming. – hop Nov 19 '08 at 17:36
@sheats: I didn't call it exact, and I didn't close the question. When you do research, it helps to include the related questions. – S.Lott Nov 19 '08 at 17:52

18 Answers

vote up 30 vote down check

My top general recommendation would be Introduction to Algorithms by Cormen, Leiserson, and Rivest. However, the books I've found most useful were more specialized. That is, it depends on what problem you want to learn algorithms for.

link|flag
I love this book for its implementations in pseudocode. You can easily translate them into just about any imperative programming language. – Barry Brown May 4 at 2:57
vote up 13 vote down

The Art of Computer Programming by Donald Knuth.

link|flag
I enthusiastically recommend Knuth's books if he has written specifically on an area you're interested in: searching, sorting, combinatorics, etc. But I would not recommend his volumes as a general introduction to algorithms. – John D. Cook Nov 19 '08 at 16:16
Exactly -- TAOCP is not a general introduction to algorithms. Knuth's books are about depth and perfection, not breadth -- his volumes on the topics most commonly encountered in a first algorithms course are still upcoming :-) – ShreevatsaR Nov 19 '08 at 21:23
I especially like the "still" part. How long have the computing world been waiting now? :D – KTC Feb 22 at 12:33
vote up 10 vote down

Algorithm Design Manual by Steven Skiena. (Second edition recently released.)

link|flag
The algorithm repository has excerpts from the book: cs.sunysb.edu/~algorith – namin Nov 19 '08 at 17:42
This is a remarkable book. – Robert Rossney Nov 19 '08 at 19:56
I just borrowed this out from the uni library : its a shopping catalogue for algorithms. It describes the problem then tells you to link to some library on the web somewhere without really describing the exact algorithm used. – paperhorse Jun 12 at 8:36
vote up 3 vote down

I would recommend "Algorithms in C++" by Robert Sedgewick. (There are also versions with the code in C, Pascal and Java).

link|flag
i find sedgewick's books to be a fantastic resource. much more rigorous and thorough covering the fundamental algorithms than Intro To Algorithms, but far more readable than Knuth. – Autoplectic Jan 5 '09 at 17:31
vote up 2 vote down

How about a classic? Algorithms + Data Structures = Programs by Niklaus Wirth.

link|flag
vote up 1 vote down

I have found these quite useful in the past:

  1. Introduction to Algorithms, Second Edition by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest and Clifford Stein The MIT Press © 2001
  2. Analysis of Algorithms: An Active Learning Approach by Jeffrey J. McConnell Jones and Bartlett Publishers © 2001
  3. Algorithms and Data Structures: The Science of Computing by Douglas Baldwin and Greg W. Scragg Cengage Charles River Media © 2004
link|flag
I think the request was "One book per answer so they can be voted on" – S.Lott Nov 19 '08 at 15:54
vote up 1 vote down

Mastering Algorithms in Perl is not bad. It's not a python book, but it does a decent job of showing algorithms implemented in a high-level language.

link|flag
vote up 1 vote down

The Tomes of Delphi: Algorithms and Data Structures, the source code can be easily translated to other programming languages.

Data Structures and Algorithms: Annotated Reference with Examples

link|flag
vote up 0 vote down

There is only one: "The art of computer programming" by Donald Knuth

link|flag
vote up 0 vote down

Algorithms for Programmers by Jorg Arndt is a free, online ebook, although the examples are in C++.

link|flag
vote up 0 vote down

The Python Cookbook. Algorithms and recipes are analogous which is where the title of the book comes from.

I have the first and second editions of the book and have never regretted buying it. It's a great collection of Pythonic code.

link|flag
vote up 0 vote down

I find that I can't wrap my mind around those books. Knuth's is great and all ... but I'm not so deep into mathematics that I could understand what he writes. Even though I build code every day that is many times more complex than what he explains. Ahem. Yes, that code does work (mine and his) ;) And I tried to understand Knuth. I love TeX. I use it as often as I can.

My best source for good algorithms was always and will always be existing code. If you like Python, check the huge library that comes along with it.

If you don't understand something there, fix the documentation. This will make you understand and it will make it easier for the next girl/guy to achieve the same thing. Apart from that, Wikipedia is a good source for an explanation for the same reasons.

link|flag
vote up 0 vote down

My favorite book on algorithms is just called Algorithms, by Dasgupta, Papadimitriou, and Vazirani. It's a rather theoretical treatment, but it touches on fascinating subjects and, best of all, a version is available online.

Knuth's TAOCP is definitive, of course, but it is not a book for beginners. It's actually not a book for very many at all -- I'd treat it more as a source and a bible than as something to learn from.

link|flag
vote up 0 vote down

the algorithm design manual by steven sienna.

less dry, more puff.

link|flag
vote up 0 vote down

Algorithm Design by Jon Kleinberg and Eva Tardos. Contains extensive coverage of all the cool things you'd learn in a second course on algorithms.

There's also the previously mentioned Introduction to Algorithms by Cormen, Leiserson, Rivest and Stein, which is comprehensive but not always as in depth as I'd like. Kleinberg & Tardos choose their topics somewhat differently but provide a lot of explanation.

link|flag
vote up 0 vote down

Well the one the told us to use in college is Cormen - "Introduction to algorithms". Book seems good but is quite time consuming. Not exactly the best if u're a beginner. I myself am looking for something more practical, however I do require the mathematical aspect of the algorithms as well.....

cheers :)

link|flag
vote up 0 vote down

Everyone seems to go with the Cormen book as far as Algorithms go. I'm just wrapping up taking my very first Algorithms class, and have had one heck of a time. Our teacher picked the Dasgupta book, Algorithms. As was stated earlier, and I can tell you from personal experience, this is not a book for beginners to be learning from. The examples, when given, are the most simplistic versions of the problems, and chapters are often interspersed with "figure the rest out for yourself!".

Sorry to sound like a book review here, I just can't stress enough to stay away from the Dasgupta book. Hopefully the next time I take (or re-take as things are going) the class, we'll be using something better.

link|flag
vote up 0 vote down

If you're after algorithms for numerical computing rather than data structures you might like to take a look at "Numerical Recipes in C" which I've relied on for years for implementations of mathematical formulae.

It's available in a C++ edition too, updated and revised.

link|flag

Your Answer

Get an OpenID
or

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