As someone with a primary electronics/embedded systems background, I've never had a full formal course on algorithms (even though I've been programming for 10+ years). In order to fill some gaps, I'm looking for a good algorithms reference book, not a didactic/exercises book. I'm also mostly interested in something where examples would be in C/C++ or similar, but not Java because I consider that garbage collection has an impact on some algorithm's structure.

I'd like the book to cover at least the big O notation, dynamic programming, sorting, hash structures and hash functions, trees and graphs.

So I've done my homework looking for reviews on the web, but it is very hard to compare them. I think Knuth's book is widely regarded as the best you can get, but I'm afraid it would be overkill, plus maybe the examples are a little too much on the fundamental side and less practical, maybe someone who has bought it can confirm or deny this.

I've also heard of "Algorithms in C++" by Sedgewick, but it looks a little dated and its recent version "Algorithms 4th edition" transitioned to Java which I think is a pity. The last one I'd looked at is Cormen's "Introduction to Algorithms". Any recommendations?

link|improve this question

We don't accept "please list all/every X you know about topic Y" on Stack Overflow, they're not questions fitting for the format here. – Lasse V. Karlsen Jul 10 '11 at 12:03
feedback

closed as not constructive by Lasse V. Karlsen Jul 10 '11 at 12:03

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

8 Answers

up vote 9 down vote accepted

Sedgewick and Cormen are with the still incomplete Art of Computer Programming (Knuth) the "classics". Which I can also recommend is Steven S. Skienas "The Algorithm Design Manual" as it contains also advanced topics (as e.g. heuristics to NP complete problems).

link|improve this answer
Do you have the Knuth's yourself? Is it actually useful as a practical reference (I'm afraid it would be too theoretical). – Giovanni Funchal Jun 24 '11 at 8:11
2  
I'd second the recomendation for Steven Skienas book. – Jackson Jun 24 '11 at 8:12
1  
@Giovanni Funchal: Indeed its a bit theoritical, esp its Riscoid (M)MIX is a little bit annoying. For practical purpose I would NOT recommend TAoCP (while Sedgewick and Cormen I actually would recommend). – flolo Jun 24 '11 at 8:14
Knuth writes very densely, but he's one of the brightest minds today, so it is also very enjoyable. Yes, it's theoretical, because it's a book about theory. It just takes a good ten minutes to slow down from the fast pace of internet age (for me at least). – fish Jun 24 '11 at 13:47
feedback

Data Structures and Algorithms in C++

Cormen's Introduction to Algorithms is IMO a pretty good book and covers many important aspects. On the other hand, it contains a lot of exercises to be used in the class room, so this might not be what you're looking for. Still, I find the book very useful.

link|improve this answer
feedback

Mastering Algorithms with C

link|improve this answer
+1 for Sedgewick's work specifically for C++. This is the reference series for algorithms when it comes to specific programming languages. – csl Jun 24 '11 at 9:10
feedback

Data Structures, Algorithms, And Applications In C++ by Sartaj sahni this is a good book for someone having idea of algorithm and c++....

If you are considering having a book not emphasaising on c++ and simply algorithm i would suggest Introduction to Algorithm by coremen to be the best....Its simply too good...basic as well as a knowledge base....complete and will give you solid knowledge of algorithm

link|improve this answer
and also it wont be a problem even if it is not in C or C++ because it doesnt lay stress on any language...so will be good learning experience.. – Abhimanyu Srivastava Jun 24 '11 at 11:24
feedback

I feel Introduction to Algorithms by CLRS would be the ideal choice for you. It has sufficient exercises and detailed example to clear most of your doubts, also since it is widely used in all Data Structure courses around the world, finding solution for your doubts or clearing the concepts wont be a problem. Here is the link for the MIT OCW course which is taught by one of its authors and which goes mostly along with the book.

And like you have said, Knuth would be an overkill, I feel you are better off with Cormen.

link|improve this answer
feedback

A good starting point for algorithms are the The Art of Computer Programming books of Donald Ervin Knuth.

link|improve this answer
feedback

While not a direct answer to your question I'd like to mention that Numerical Recipes is an excellent book, focused on scientific algorithms, if you ever have a need for this. Apologies for going off-topic!

link|improve this answer
It is indeed quite well focused on its topic, but I've seen many reports that several recipes have numerical problems (e.g. instabilities, poor caution about overflows) to be wary of. – Novelocrat Jun 24 '11 at 21:43
@Novelocrat: NR is no silver bullet, and has never claimed to provide state of the art implementations of the algorithms it describes. It "only" provides an extremely clear explanation of what is going on for an enormous range of problems, alog with proof-of-concept code and pointers to the litterature. Numerical analysis is a tough subject, and NR makes it accessible to the public. It is an awesome book, but you have to provide some effort yourself to get some profit out of it. – Alexandre C. Jul 1 '11 at 21:27
feedback

The Topcoder Tutorials page has some readable articles that may be helpful

link|improve this answer
feedback

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