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

In your CS career, which book dramatically changed your way of approaching problems?

Most Frequently mentioned:

  • Code Complete (MS Press)
  • The Pragmatic Programmer
  • Martin Fowler's Refactoring, and Head First Design Patterns.
  • The original GoF Design Patterns
  • Structure and Interpretation of Computer Programs
  • How To Solve It
share|improve this question
2  
There are some other good questions on SO about technical books. You should check those out (no pun intended) too. – Robert S. Nov 20 '08 at 15:50

closed as not constructive by Bo Persson, Kev Aug 5 '12 at 15:10

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

34 Answers

1 2

The Pragmatic Programmer

share|improve this answer

CodeComplete

By Steve McConnell
ISBN 0-7356-1967-0 (2nd edition)
Microsoft Press

Via Paul Lalonde very high knowledge of this book

share|improve this answer

Martin Fowler's Refactoring, and Head First Design Patterns.

share|improve this answer
show 1 more comment

The original GoF Design Patterns. I felt like I'd leveled up after each chapter.

share|improve this answer
show 2 more comments

Gödel, Escher, Bach: an Eternal Golden Braid - Douglas Hofstadter

share|improve this answer

Structure and Interpretation of Computer Programs. I learned many valuable things from that book, but the most dramatic change was in the point of view that all programming is language design. All libraries and subroutines object classes and such are ways of extending the language to create a new language in which you solve your problem.

share|improve this answer

Programming Pearls Jon Bentley's excellent Programming Perls. Brilliant book.

share|improve this answer
show 1 more comment

How To Solve It by G. Polya. A book of heuristics for solving mathematical problems, but applicable to just about any problem. Assigned reading for one of my mathematics classes, this is one of very few university books I still refer to decades later.

share|improve this answer
show 1 more comment

eXtreme Programming Explained: Embrace Change - Kent Beck

share|improve this answer

Software Tools by Brian W. Kernighan and P. J. Plauger

share|improve this answer

In no particular order:

share|improve this answer
show 2 more comments

Introduction to Algorithms by Thomas H. Cormen.

alt text

Whilst I confess (due to lack of Mathematical grounding) I have not read the entire book cover-to-cover as I have intended to for a long time I believe this book is an essential read for undergraduate CS students, as well as software professionals.

Far too often the theoretical aspects of development are ignored, simply because many of them forgo practicality. Thankfully, whilst I personally don't like the pseudo-code examples, I can relate many of these problems to code I have written. So far it has vastly improved my ability to comprehend problems, and hopefully when I am able to read the book cover-to-cover it will give me the added skills I desire.

share|improve this answer

I would have to say The Design of Everyday Things by Donald Norman. This explains how many everyday objects are poorly designed, and some that are done very well.

share|improve this answer

"Hardcore Zen" and "Sit Down and Shut Up", both by Brad Warner.

Their influence isn't just due to their coherent and appealing explanation of Zen meditation. I'd been practicing Zen for years before I read them.

No, what these books really offered me is a great example of getting to the real heart of an issue by throwing away the dogma and looking at the situation with fresh eyes. So often when we're faced with an unsolvable problem, it's because some of our lower-level assumptions make the problem unsolvable.

With teaching Zen, Warner realized that the dogma isn't the point. Freed from the typical methods of teaching Zen, he came up with an even cleaner and more elegant method of doing so. He tossed the bathwater and kept the baby.

Every time I've overcome a major, seemingly intractable snag in a program, it's because of a question I wasn't asking myself that I should have. And I wasn't asking the question because I'd already assumed an answer instead of actually seeing the problem and formulating it.

Both Warner's example and the practice of Zen meditation showed me how to throw out my assumptions and build a problem space entirely from scratch.

share|improve this answer
show 3 more comments

"Software Tools" by Brian Kernighan, P.J.Plauger.

The book predates both C and UNIX but had a deep influence on both. And a deep influence on the way I worked and approach problems. Its still a good read if you can get your head around the "Ratfor" program examples.

share|improve this answer

I cannot pick one book because there are three of them that deeply influenced my software developer carrier:

  • Code complete, Steve McConnell, first edition. I read it around 1994 and it was a book that explained fine craft of software development. I still have it and in my opinion it is the book that every programmer must read.

  • Design Patterns, GoF. I got this one around 1997. Book is so hard that I needed 6 months to read and study pattern catalog. Since then, I'm reading it whenever I am not sure about some pattern. "Head first design patterns" is also great book, but it is to verbose. When I need details about implementation, "Design Patterns" is the really good reference. Drawback is that book is very dense and hard to read.

  • Domain driven design, Eric Evans. This is the book that taught me how to effectively design object models. I read lots of books in this area, but this one is high above others. "Code Complete" taught me a craft and this one taught me fine design.

share|improve this answer
show 1 more comment

Four of them come to mind at once (and you can tell how far back this was):

  1. The Report on the Algorithmic Language ALGOL 60 was earth-shattering for me when I stumbled upon it in 1961.

  2. Peter Landin's triple-threat: "The Mechanical Evaluation of Expressions [MEE]", "A Correspondence between ALGOL-60 and Church's lambda notation," and "The Next 700 Programming Languages" (all mid-60s)

  3. Donald Knuth's The Art of Computer Programming, all volumes but especially vol.1 (along with his "Literate Programming" and Selected Works).

  4. Edsger Dijkstra's A Discipline of Programming, 1976.

  5. ADDED LATER: On reflection, I notice that this book has had a profound influence on my attitude toward development of dependable software: Robert C. Solomon and Fernando Flores, "Builkding Trust in Business, Politics, Relationships, and Life," Oxford University Press (New York: 2001), ISBN 0-19-516111-4 pbk. I summarize some of the importance for me in the post "Trust but Demonstrate."

share|improve this answer
show 1 more comment

The Art of Unix Programming by Eric S. Raymond. Given the infatuation with architectures like J2EE and event the so called "lightweight" containers such as Spring and others, "The Art of Unix Programming" presents an alternative way of solving problems that is tried and true and does actually make some otherwise difficult things easy. For example, efficiently using multi-threading and multi-core hardware is much easier with the approaches described in the book. Plus, it's a good read :)

share|improve this answer

This from the beginning of my career...

"The Spirit of C, An Introduction to Modern Programming" by Henry Mullish and Herbert L. Cooper.

That was one of the best C books.

And, of course "The C Programming Language" by Brian Kernighan and Dennis Ritchie.

-R

share|improve this answer

The latter book started me on a journey towards understanding Domain-Driven Developement and Software Factories - a journey only just begun, as I will need to read "Software Factories: Assembling Applications with Patterns, Models, Frameworks, and Tools" by Jack Greenfield, Keith Short, Steve Cook, and Stuart Kent several more times before I understand it.

share|improve this answer

It was a while ago, but Ted Patison's

Programmimg Distributed Applications With Com+ and Microsoft Visual Basic 6.0

More recently, Domain Driven Design by Eric Evans

alt text

share|improve this answer
show 1 more comment

Marvin Minsky's books

share|improve this answer

"Soul of a New Machine" - Tracy Kidder(?)

Taught me a lot about burn-out and work-life balance.

share|improve this answer

Crystal Clear by Alistair Cockburn

share|improve this answer

Having already voted up McConnell's Code Complete, I'll add Getting To Yes by Roger Fisher and William Ury which succinctly outlines key practices in conducting win-win negotiations. Whether talking to team members, project managers, internal departments or external clients, most developers spend at least some of their time in negotiations over features, technologies, timescales etc. Finding an effective way to get the best out of these negotiations is an important skill.

When I first read Getting To Yes many years back, it helped me to get a grip on using negotiations to reach acceptable solutions rather than treating them as an exercise in winning arguments. I suspect it also had a subtle but profound effect on the way that I write code. It's one of those deceptively simple books that seems obvious once you've read it but can have a wide-ranging impact on your professional practice.

share|improve this answer

Looking at my bookshelf, from most general to most specific, my most-used books are:

  • The Design of Everyday Things
  • The Visual Display of Quantitative Information
  • Programming Pearls (first edition, along with More Programming Pearls)
  • The Art of Computer Programming (all three volumes)
  • Numerical Recipes (C edition)
  • Jim Blinn's Corner (all there volumes)
  • Graphics Gems (all five volumes)

The strength of every one of the above books is its mindset. I find myself returning to them time and time again to help me maintaining the ever-important balance overall design and the minutiae of the actual coding. Every other computer book on my bookshelf is a reference book of one kind or another, all trees but no forest. Useful detailed technical data, sure, but nowadays almost always as easy to find online.

share|improve this answer
1 2

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