Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Duplicate of:

http://stackoverflow.com/questions/161288/what-would-be-the-best-book-to-read-in-order-to-really-grok-oop/161504

http://stackoverflow.com/questions/574001/what-books-do-you-suggest-for-understanding-object-oriented-programming-design-de/574619

http://stackoverflow.com/questions/455627/head-first-style-data-structures-algorithms-book

http://stackoverflow.com/questions/48337/modern-books-on-algorithms

http://stackoverflow.com/questions/302270/what-is-the-best-book-for-learning-about-algorithms

etc.

I'm looking to pick up a few books about Design Patterns and Algorithms (both analyses of existing algorithms, as well as design and implementation of my own algorithms).

Any suggestions? Programming language isn't a problem, as I'll pick it up as I go along if I don't know it, and use it as an opportunity to learn something new.

Thanks.

share|improve this question
this must be a duplicate.... – Mitch Wheat Mar 10 '09 at 7:43
This question is a classic example of how bad SO's search is? Use google with "site:stackoverflow.com" !! – Mitch Wheat Mar 10 '09 at 7:47

marked as duplicate by Mitch Wheat, ShreevatsaR, workmad3, krosenvold, Toon Krijthe Mar 10 '09 at 8:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

7 Answers

Headfirst design patterns is really well written and understandable. Then there is the original, Design Patterns: Elements of Reusable Object-Oriented Software, somewhat more difficult to understand. In terms of Architecture Fowler's Patterns of Enterprise Architecture is the main one.

For algorithms you might want to take a look at Cormen's Introduction to Algorithms

share|improve this answer
Nice books. Links would help. – cherouvim Mar 10 '09 at 7:46

The holy bible for design patterns: Design Patterns: Elements of Reusable Object-Oriented Software

share|improve this answer
Do you mean it's a work of fiction? – Wayne Koorts Mar 10 '09 at 8:02

For a book that explains the reasoning behind a lot of design patterns and the underlying concepts, I would suggest Bertrand Meyers's Object-Oriented Software Construction. If you learn the conceptual basis, you don't have to learn every pattern out there (but Head First Design Patterns is good for when you do want to study specific patterns).

share|improve this answer

I really like the Head First series, and their book on design patterns is no exception:

Head First Design Patterns

share|improve this answer

For design patterns entirely, I would recommend highly the all-time excellent "Design Patterns: Elements of Reusable Object-Oriented Software", from the authors who are known as the Gang of Four.

share|improve this answer

You do want to consider the pattern bible (aka GoF - Gang of Four): Design Patterns: Elements of Reusable Object-Oriented Software

But patterns depends a bit on your programming language. The book is very relevant if you're a Java/C++ developer, but (imo) mostly useless if you're into Ruby. (In which case you might want http://www.amazon.com/Design-Patterns-Ruby-Addison-Wesley-Professional/dp/0321490452/ instead.)

A good algorithm book is Introduction to Algorithms .

share|improve this answer

I recommend you those:

For algorithm analysis, you can get a lot of this book, it's a must read, it covers from algorithm design and analysis to data structures, linear programming, NP-completeness and much more, clearly presented, mathematically rigorous...


Introduction to Algorithms

And


Head First Design Patterns

share|improve this answer