I've been doing web development for 10 years, not touching algorithms and data structures since I left college. I've bombed 2 interviews because I've not been able to answer questions relating to algorithms and data structures. What books can you recommend to pick up quickly/revise the topic?

It's largely irrelevant, but I work with PHP primarily, then Ruby and Java in the past. I have an on-site interview in a couple of weeks. What can you suggest to prepare (other than google.com?q=*)...

Cheers! Emma

link|improve this question
1  
see this question for algorithms stackoverflow.com/questions/302270/… – nathan gonzalez Jan 5 '11 at 21:12
feedback

9 Answers

@templatetypedef mentioned "Introduction to Algorithms" by Cormen, Leiserson, Rivest, and Stein. That's the true tome.

You can watch all of Leiserson's MIT lessons on Algorithms via iTunes U for free: http://itunes.apple.com/us/itunes-u/introduction-to-algorithms/id341597754

You can buy the book here: http://www.amazon.com/Introduction-Algorithms-Second-Thomas-Cormen/dp/0262032937

For a super-quick overview, you can read @Cletus's quasi-revered explanation of Big-O notation: Plain English explanation of Big O

If you're ready for the rabbit hole, read Knuth's The Art of Computer Programming. At least the first book of it. As Bill Gates himself said:

If you think you're a really good programmer. . . read [Knuth's] Art of Computer Programming.... You should definitely send me a resume if you can read the whole thing.

link|improve this answer
feedback

If you're looking for a gentle but rigorous introduction to algorithms, you might want to check out "Algorithm Design" by Kleinberg and Tardos. It's language-agnostic (everything is in pseudocode), but it focuses heavily on the ideas that drive the algorithms and data structures it covers. The net result is that you get a much better picture for how everything works, the sorts of tradeoffs involved, etc. without getting killed by the crazy implementation details necessary to actually code them up.

A much more rigorous book along these lines is "Introduction to Algorithms" by Cormen, Leiserson, Rivest, and Stein. It's affectionately called CLRS in some circles. This is not an easy book to read - it's a dense textbook - but it has some of the best explanations of algorithms and data structures anywhere on the market. It covers a wide array of topics as well.

link|improve this answer
feedback

Check out The Algorithm Design Manual. While I used a different book in college, this was the book I picked up to brush up on algorithms when I interviewed for another job.

The best part about this book is the second part of it which contains a bunch of example problems and different solutions for each using the algorithms explained in the book. If you are doing this for a job interview prep type thing, I can't recommend this book enough.

link|improve this answer
feedback

We used to use Algorithms, by Robert Sedgewick.

link|improve this answer
feedback

I used a book called Data Structures and Algorithms in Java when I was in college. In my taste it had a very nice touch to explaining things and good code examples. The same book was available for several languages as well as a language agnostic version.

link|improve this answer
feedback

Read Programming Interviews Exposed to give you a quick insight into programming interviews. Definitely a quick and easy read. Additionally, you might want to read: "Programming Pearls" by Jon Bentley and the CLRS textbook as mentioned by others.

Unfortunately, the last two books I mentioned are not quick reads but are definitely good in enabling you to get familiarized with programming questions.

Good luck!

link|improve this answer
feedback

While the Cormen et al. book is a good comprehensive resource, a more concise but excellent resource is the Data Structures and Algorithms book by Aho et. al:

http://www.amazon.com/Data-Structures-Algorithms-Alfred-Aho/dp/0201000237 (I am not trying to promote Amazon, but I could not find another link to the same hardcover book)

they actually have a WikiBook form of this (but not the same as the original):

http://en.wikibooks.org/wiki/Data_Structures

If you're looking for a concise jump start, I would suggest checking one or both out.

link|improve this answer
feedback

Go for "Thinking in Java". That is a very good book that shows you how to think in object oriented world and program that in Java.

Regarding algorithms you may pick "Data Structures and Algorithms in Java". Algorithms are independent from the technology used. Learning given programming language allows you to express those in given one.

Those are two independent skills you may learn in parallel.

link|improve this answer
Its funny you suggested "Data Structures and Algorithms in Java" I was just looking at it thinking it may be helpful. – calicompiler Jan 12 '11 at 8:01
There is only one book for Algorithms Thomas H. Cormen Introduction to Algorithms :-) The one suggested in java specific. – Gadolin Jan 19 '11 at 9:20
feedback

I wish to recommend one of the best book I ever seen:

Programming Pearls, Second Edition by Jon Bentley

http://netlib.bell-labs.com/cm/cs/pearls/index.html

Every software developer must read it.

According to algorithms, just request in Google "Java Algorithms books". They are similar. And I cannot say that one book is much better than the other one.

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.