vote up 19 vote down star
22

I have a little book called Problems on Algorithms by Ian Parberry which is chock full of exercises related to the study of algorithms. Can anybody recommend similar books?

What I am not looking for are recommendations of good books related to algorithms or the theory of computation. Introduction to Algorithms is a good one, and of course there's the Knuth stuff.

Ideally I want to know of any books that are light on instructional material and heavy on sample problems. In a nutshell, exercise books. Preferably dedicated to algorithms rather than general logic or other math problems.

By the way, the Parberry book does not seem to be in print, but it is available as a PDF dowload.

flag

Are you interested only in books, or would you also accept online materials? – Bill the Lizard Jul 2 at 21:25
Online materials are great too. :) – Parappa Jul 2 at 21:38

13 Answers

vote up 11 vote down check

The Algorithm Design Manual
by Steven S. Skiena

alt text

Edit: for Steve Yegge's fans, Get that job at Google.

[...] 1) Study a data-structures and algorithms book. [...]
My absolute favorite for this kind of interview preparation is Steven Skiena's The Algorithm Design Manual. More than any other book it helped me understand just how astonishingly commonplace (and important) graph problems are – they should be part of every working programmer's toolkit. The book also covers basic data structures and sorting algorithms, which is a nice bonus. But the gold mine is the second half of the book, which is a sort of encyclopedia of 1-pagers on zillions of useful problems and various ways to solve them, without too much detail. Almost every 1-pager has a simple picture, making it easy to remember. This is a great way to learn how to identify hundreds of problem types. [...]

link|flag
I had Skiena as my prof for a Programming Challenges class. A pretty intensely intelligent guy, and his other book is fantastic. (I'm strongly tempted to vote this up on that alone, but since I haven't seen this particular book, I won't...even though I strongly suspect it's great.) – Beska Jul 2 at 20:57
2  
+1: Bought this book a few years ago and holy bejeezus it is excellent. I, for one, was impressed by the graph algorithms which make up about 1/2 of all the algorithms in the book, and I've found the informal style of the book much more useful in practice than books which describe an algorithm and prove its correctness. The "war stories" are invaluable for demonstrating the algorithms in general practice, rather than theoretical curiosities with no real-world applications. My only complaint about the book is the lack of immutable implementations of the data structures described in the book. – Juliet Jul 2 at 20:59
just bought a copy. Algorithms was my favorite CS class in college by far, and honestly the only one that I felt is still relevant to my work today. Although the OS design class was a close second, now that I think about it.. – Jeff Atwood Jul 4 at 14:21
vote up -1 vote down

For an independent review of Algorithms in a nutshell I'd also say that any book by jon bently is worth reading.

link|flag
vote up 2 vote down

Although the title is about Mathematics, I think this is a classic on algorithms, many programming contest problems are inspired by this book:

Martin Gardner's Mathematical Games

Mathematical games

link|flag
I added it in my wishlist, +1 – Nick D Jul 6 at 17:17
vote up 1 vote down

Another favorite book,

Programming Collective Intelligence: Building Smart Web 2.0 Applications
by Toby Segaran

alt text

Its focus is on data mining algorithms, and it has a collection (and implementation) of many interesting algorithms.

Although the code samples are in Python, you wont have trouble understanding them - they look like pseudo-code.

link|flag
vote up 0 vote down

While not strictly exercise books, they could be adapted fairly easily:

Mastering Algorithms in C

Mastering Algorithms in Perl

Do not look past books on numerical methods - especially if you are interested in more mathematical kinds of algorithms. The Numerical Recipes books, for all their warts, are still the "standard" among most scientists and engineers. Be warned...this book is only interesting for the description of the algorithm NOT for the code. The code in this book was written under the theory that "...Fortran can be written in any language...", and it's bad Fortran at that.

Numerical Recipes: The Art Of Scientific Computing

link|flag
vote up 3 vote down

Programming Pearls by Jon Bentley is a fantastic algorithms book.

The book covers a great number of algorithmic and data structures concepts -- each chapter focuses on a few practical examples, and has questions, hints, and answers to work on yourself.

There are some examples of what the book covers on its Bell Labs website.

programming pearls cover

link|flag
vote up 4 vote down

I recently posted a list of programming puzzle sites on my blog. All of them have lots of sample problems, and TopCoder has a good section of Algorithm Tutorials posted by top users.

For sample problems I highly recommend the following:

link|flag
vote up 0 vote down

Algorithms In A Nutshell (Heineman, Pollice, & Selkow)

alt text

link|flag
vote up -1 vote down
link|flag
stackoverflow.com/questions/406760/… – Jim G. Sep 15 at 19:51
@Jim G: how is it a "controversial" programming opinion to recommend books that I like? – bLee Sep 15 at 21:17
vote up 2 vote down

Data Structures and Algorithms in Java by Michael T. Goodrich and Roberto Tamassia is primarily a text book, but it has excellent exercises as well.

I do only know the Java version, but it seems they have written Data Structures and Algorithms in C++ as well.

link|flag
vote up 3 vote down

I can recommend you Algorithms in C by Robert Sedgewick - just very good books: alt text

link|flag
His older ALGORITHMS has been on my shelf for around 25 years and is pretty good. – PTBNL Jul 2 at 21:38
vote up 4 vote down

Since I like it, I'll recommend Skiena's other book, Programming challenges. Divided into chapters based on how to attack (what algorithm or data structure is a good approach) for particular problems, with some introduction to how they work...and then a bunch of problems to try to tackle. Challenging.

alt text

link|flag
vote up 0 vote down

When I was in college the professor would assign problems out of PascAlgorithms. I have no idea if the actual book is good or not, but the problems that came out of there were always fascinating.

link|flag

Your Answer

Get an OpenID
or

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