vote up 0 vote down star
2

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.

flag
this must be a duplicate.... – Mitch Wheat Mar 10 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 at 7:47

closed as exact duplicate by Mitch Wheat, ShreevatsaR, workmad3, krosenvold, Gamecat Mar 10 at 8:09

7 Answers

vote up 1 vote down

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).

link|flag
vote up 1 vote down

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 .

link|flag
vote up 1 vote down

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

link|flag
vote up 2 vote down

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

link|flag
Do you mean it's a work of fiction? – Wayne Koorts Mar 10 at 8:02
vote up 1 vote down

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.

link|flag
vote up 3 vote down

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

link|flag
Nice books. Links would help. – cherouvim Mar 10 at 7:46
vote up 1 vote down

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

Head First Design Patterns

link|flag

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