12 Most Influential Books Every Software Engineer Needs to Read

This is a question that I get a lot, especially from co-workers or friends that are just beginning their journey as a software craftsman.

What book should I read to become a better developer? Do I need to read books?

I think it’s a great question, and it is one that I asked many of my mentors as I was becoming a software engineer. The problem was that many people suggested different books on different topics. All the books they suggested were great in their own right, but no one was able to give me a list that would be the ESSENTIAL books, the MUST READS, that any engineer with hopes of being great should most certainly read.

Well, I’ve learned a lot from my mentors and realized that I still had a lot to learn with the many different books that were suggested to me. I decided to develop a routine to read one book a month in my profession field (software engineering). Over the years, I’ve aggregated a list that, I believe, to be MUST READS for anyone that wants to be a top tier developer.

Now let me state the obvious – just reading all of these books on the list will not make you a great developer. That will come with years of experience and applying the principles in these books into real practices and developing your problem-solving skills in the real world.

However, reading these books will help you avoid the major pitfalls and mistakes that many developers make early off in their careers. I wish that someone would have told me about these books just starting out, but I was lucky enough to have found and read them over the years. You might have read some of these books in college for your computer science or engineering classes. Maybe at the time, you didn’t think they were important, but I can say first hand that I’ve used and applied many principles from each and every one of these books.

Let me also point out that this is not an exhaustive list. Many great books come out every year. These are just the ones that have had the biggest impact on myself and my career. Also, these are mostly language agnostic, and can be applied using any of the many software languages.  (I will do another post with the best books targeted at certain technology platforms and stacks)

Well, let’s get to it then! (drum roll, please)

THE LIST

(All these are essential, but I put them in descending order from which ones had the biggest impact on me. I have also provided the link (click on the book cover) to where you can purchase the book on Amazon if interested. Read the reviews and decide for yourself!)

download (3)  12. Working Effectively with Legacy Code

I love this book because almost every software developer, at some point in their career, has to support and work with a legacy system. In this book, Michael Feathers offers start-to-finish strategies for working more effectively with large, untested legacy code bases. This book draws on material Michael created for his renowned Object Mentor seminars: techniques Michael has used in mentoring to help hundreds of developers, technical managers, and testers bring their legacy systems under control.

51WIpM70FEL._SL160_  11. The Mythical Man-Month

This book is a classic, but recently revised and corrected. The amazing thing is how relevant the book still is to software product development. If you are involved in software, this book is a must-read. The most valuable part of the book, I believe, is the “plan to throw out” prototype chapter. While the goal is always to make a bigger, better, fast whatever, it is almost an axiom that you WILL build something that has to be discarded and reworked. This happens every time, I can tell you from first-hand experience. Therefore, it is vital to plan to throw out so you can migrate your users to whatever will follow. If you dream that the first product is THE ONE, you risk abandoning them on a product that will inevitably evolve. Planning to throw-away also helps meet the schedule goals by setting reasonable milestones that can be obtained.

download (2)  10. Design Patterns

If you are planning to be an architect or designer of a system, you will most likely be required to read this book. Hailed as one of the greatest software development books ever written, this book goes into great detail on the many different design patterns that have been developed over the years to help software engineers avoid and handle common problems that the industry faces. Following the strategies in this book will allow you to build higher quality, flexible, and maintainable software. This book also goes by the name “Gang of Four” in software groups because of its famous four authors that put this book together.

 pp2e  9. Programming Pearls (2nd Edition)

This book is slightly different from the other books on the list. I would say this book helps a person “think like a programmer”. Programming Pearls is a compendium of 15 columns previously published in Communications of the ACM. The columns cover a broad range of topics related to programming: from requirements gathering to performance tuning. The focus is primarily on coding techniques and algorithms.

Each column has been reorganized as a chapter. Chapters usually start with the presentation of a practical problem. Then various solutions are presented and are used as lessons to be learned. The writing style is clear and fun.

Programming Pearls is not a usual book teaching new programming concepts. Although it contains good and sometimes quite novel ideas, the aim of the book is not to teach something new but to help you become a better problem solver.

31GBgcA5PML._SL160_   8. CODE: The Hidden Language of Computer Hardware and Software

This book cleared up a lot of the “Magic” that goes into creating and developing complex systems. There are so many abstractions these days that the low-level details are sometimes unknown to the developer. Though you may not find yourself using this book 24/7 in practice…I believe it is a good idea to have an understanding of what you are building on top of and how the whole orchestration works. It may come in handy when you need to open up that “Black Box” and deep dive into the software or hardware to fix a pesky bug. “CODE: The Hidden Language of Computer Hardware and Software” by Charles Petzold deals with a number of programming concepts starting from number systems – decimal, octal, binary to high-level languages. The book explains packet based communication protocols and TCP. Many chapters are about hardware concepts, and five chapters are devoted to software and teach about the operating system, floating point arithmetic, and GUIs.

41Jon2rS8nL._SL160_  7.The Art of Computer Programming

This is another classic. This was written by the famous computer scientist Professor Donald Knuth and is highly praised by many of the top programmers in the industry. Even Bill Gates is quoted saying

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

The book begins with basic programming concepts and techniques, then focuses more particularly on information structures–the representation of information inside a computer, the structural relationships between data elements and how to deal with them efficiently. Elementary applications are given to simulation, numerical methods, symbolic computing, software, and system design.

51T4YZ3HieL._SL160_  6. Refactoring

“Refactoring” by Martin Fowler is about improving the design of existing code. It is the process of changing a software system in such a way that it does not alter the external behavior of the code, yet improves its internal structure. With refactoring, you can even take a bad design and rework it into a good one. This book offers a thorough discussion of the principles of refactoring, including where to spot opportunities for refactoring, and how to set up the required tests. There is also a catalog of more than 40 proven refactorings with details as to when and why to use the refactoring, step by step instructions for implementing it, and an example illustrating how it works The book is written using Java as its principal language, but the ideas apply to any OO language.

41znMZniZ1L._SL160_  5. Clean Code

“Clean Code,” written by Robert C. Martin, is divided into three parts. The first describes the principles, patterns, and practices of writing clean code. The second part consists of several case studies of increasing complexity. Each case study is an exercise in cleaning up code—of transforming a code base that has some problems into one that is sound and efficient. The third part is the payoff: a single chapter containing a list of heuristics and “smells” gathered while creating the case studies. The result is a knowledge base that describes the way we think when we write, read, and clean code.

41kXXE4mAKL._SL160_  4. Introduction to Algorithms

This has to be the single best book for understanding and using algorithms (which you will be doing a lot of in software development). Some books on algorithms are rigorous but incomplete; others cover masses of material but lack rigor. Introduction to Algorithms uniquely combines rigor and comprehensiveness. The book covers a broad range of algorithms in depth, yet makes their design and analysis accessible to all levels of readers. Each chapter is relatively self-contained and can be used as a unit of study. The algorithms are described in English and in a pseudocode designed to be readable by anyone who has done a little programming. The explanations have been kept elementary without sacrificing depth of coverage or mathematical rigor.The first edition became a widely used text in universities worldwide as well as the standard reference for professionals. The second edition featured new chapters on the role of algorithms, probabilistic analysis, and randomized algorithms, and linear programming.

41AJV8G0ZTL._SL160_  3. Structure and Interpretation of Computer Programs

With an analytical and rigorous approach to problem solving and programming techniques, this book is oriented toward engineering. Structure and Interpretation of Computer Programs emphasizes the central role played by different approaches to dealing with time in computational models. Its unique approach makes it appropriate for an introduction to computer science courses, as well as programming languages and program design. The book further explains the four best-known paradigms of programming languages – imperative, object-oriented, logic based and applicative programming.

41HXiIojloL._SL160_  2. Pragmatic Programmer

This was one of the first programming books I read. I had a friend recommend it to me in my first professional job. I’m glad he did. Though the book was written in 1999 (I believe), the concepts are the basis of how we go about developing a complex system in a practical manner. Programmers are craftspeople trained to use a certain set of tools (editors, object managers, version trackers) to generate a certain kind of product (programs) that will operate in some environment (operating systems on hardware assemblies). Like any other craft, computer programming has spawned a body of wisdom, most of which isn’t taught at universities or in certification classes. Most programmers arrive at the so-called tricks of the trade over time, through independent experimentation. In The Pragmatic Programmer, Andrew Hunt and David Thomas codify many of the truths they’ve discovered during their respective careers as designers of software and writers of code.

Some of the authors’ nuggets of pragmatism are concrete, and the path to their implementation is clear. They advise readers to learn one text editor, for example, and use it for everything. They also recommend the use of version-tracking software for even the smallest projects and promote the merits of learning regular expression syntax and a text-manipulation language. Other (perhaps more valuable) advice in the book is more light-hearted. In the debugging section, it is noted that “if you see hoof prints think horses, not zebras.” That is, suspect everything, but start looking for problems in the most prominent places. There are recommendations for making estimates of time and expense, and for integrating testing into the development process. You’ll want a copy of The Pragmatic Programmer for two reasons: it displays your own accumulated wisdom more clearly than you ever bothered to state it, and it introduces you to methods of work that you may not yet have considered.

51nWkLCu1SL._SL160_  1. Code Complete 2

And this is it! The number one book (IMHO) to read if you are going to be a great software engineer. Widely considered one of the best practical guides to programming, Steve McConnell’s original CODE COMPLETE has been helping developers write better software for more than a decade. Now this classic book has been fully updated and revised with leading-edge practices—and hundreds of new code samples—illustrating the art and science of software construction. Capturing the body of knowledge available from research, academia, and everyday commercial practice, McConnell synthesizes the most effective techniques and must-know principles into clear, pragmatic guidance. No matter what your experience level, development environment, or project size, this book will inform and stimulate your thinking—and help you build the highest quality code.

Discover the timeless techniques and strategies that help you:

  • Design for minimum complexity and maximum creativity
  • Reap the benefits of collaborative development
  • Apply defensive programming techniques to reduce and flush out errors
  • Exploit opportunities to refactor—or evolve—code, and do it safely
  • Use construction practices that are right-weight for your project
  • Debug problems quickly and effectively
  • Resolve critical construction issues early and correctly
  • Build quality into the beginning, middle, and end of your project

Well, that’s it for now!

Let me know in the comments if you have read any of these or have any other must-reads for software developers!

If you have enjoyed this post, the biggest compliment you could give would be to share this with someone that you think would enjoy it!

Additionally, if you never want to miss a post, subscribe to this blog by clicking the follow button in the bottom right corner! Thanks for reading, have a great day, and never stop learning!

57 responses to “12 Most Influential Books Every Software Engineer Needs to Read”

  1. […] 12 Most Influential Books Every Software Engineer Needs to Read […]

  2. […] He most definitely was familiar with many of my books that I have publicly stated are “The Most Influential Books That Every Software Engineer Needs to Read“. In fact his favorite book on software development was the same as mine (Code Complete 2) […]

  3. […] The last thing that has helped me to learn these new technologies fast is by building a strong foundation on Computer Science, Software Development, and Coding principles. For me these are best taught by an in-depth book on the subject. Taking some time to build a strong foundation on the fundamentals will save time in the end because you will be able to relate a new technology to which core fundamentals they are trying to address. For a list of all the books I think every software developer should read, visit this article. […]

  4. Good list. I recommend Clean Code as a MUST read for all Software Developers.

    1. Sadly, I have not read that yet! It is top “want to read books” lists though. I have been told that it is a must read by many great developers.

  5. Personally, I find myself going back time-and-again to Eric Evan’s ‘Domain Driven Design’
    http://www.amazon.com/Domain-Driven-Design-Tackling-Complexity-Software/dp/0321125215

    1. This book has been on my “to read” list! This makes me want to move it to the top. Thanks for the comment

  6. Good read? Maybe, if you are into the history of computer programming.

    Need to read? No way.

  7. Please turn off the shooting stars, they are terribly distracting

  8. Nice list! Here’s a list of books that I personally like. Mine is a bit longer tho. 🙂

  9. Nice list! Here’s a list of books that I personally like. My list is a bit longer and I go into details about why I like each book. Check it out!

    1. Thanks for the great list Peteris! You have a great list and you have inspired me to pick up the Little Schemer book series as well. Thanks for the post and great work on Browserling!

      1. Thank you very much!

  10. As a fresh programmer just starting out with java and PHP, THANK YOU THANK YOU THANK YOU!! Its really hard to find anything that isn’t either begginer guides or abstract thesis in obscure subjects. Thank you for laying out a great starting point for people like me, I will be really busy this Christmas!! Happy holidays

  11. Thank you so much for putting together this list. I have kept a similar list of books in mind over my career, and I’m impressed that you basically hit all the high points.

    I do have to say though, I feel you have a more theoretical or CS focus with Programming Pearls and The Art of Computer Programming. I was waiting for Pragmatic Programmer to show up and was pleased to find it near the top in terms of importance. This post has reminded me of the great books I have not yet read and prompted me to put them on my to-read list.

    Keep up the good work 😀

  12. […] by javinpaul [link] [4 comments] Full article:12 Most Influential Books Every Software Engineer Needs to […]

  13. This list is somewhat congruent a list of top software design books (http://farenda.com/reading/top-software-design-books/). It’s strange that you don’t have “DDD” by Eric Evans, because the book is very influential.

  14. Reblogged this on mypynotes.

  15. […] 12 Most Influential Books Every Software Engineer Needs To ReadBy Roelljr Posted On March 16, 2015 […]

  16. is there any link to download these books ?

  17. […] Source: 12 Most Influential Books Every Software Engineer Needs to Read […]

  18. […] 12 Most Influential Books Every Software Engineer Needs to Read | The Curious Programmer (jasonroell.com) […]

  19. Decent list but not a single book about software security, or writing secure code. this is why most software built is STILL filled with decade old security vulnerabilities, writing secure code isn’t taken seriously by software engineers.

    A book that should be on this list is this one : http://www.amazon.com/Software-Security-Building-Gary-McGraw/dp/0321356705/ref=sr_1_1?s=books&ie=UTF8&qid=1451276185&sr=1-1

  20. Thanks a lot……!!!

  21. Great list! Thanks for sharing! Hacker’s Delight by Henry S. Warren would be great addition to this list.

  22. Thank you very much!🌟🌟🌟🌟🌟

  23. Thank you very much🌟🌟🌟🌟🌟

  24. wonderful, the list is great, I’ve read like clean code, design patterns and the pragmatic programmer.

    I’d like do include more:
    – The clean coder – Uncle Bob;
    – Software architecture for developers – Simon Brown
    – Domain Driven Design(Tackling Complexity in the Heart of Software) – Eric Evans

  25. […]   英文原文:12 Most Influential Books Every Software Engineer Needs to Read […]

  26. Thank you very much.

  27. […]  Bir yazılımcının okuması gereken kitaplar […]

  28. […] Bir yazılımcının okuması gereken kitaplar […]

  29. This is a great list on software engineering books – Thanks for posting.

    At A.I. Optify we have taken a data science approach to mine the web and rank the top 40 Software Engineering books.
    Our data science team has scraped various signals (e.g. online reviews & ratings, topics covered in the book, author popularity, price etc.) from open web for more than 300’s of Software Engineering books.
    We have combined all signals to compute a Fit Score for each book and publish the list of top Software Engineering books.
    You can view the list of top 40 Software Engineering books here:
    http://aioptify.com/top-software-books.php?utm_source=contentpromotion&utm_medium=cpm&utm_campaign=topsoftwarebooks

  30. Thank You very much sir!!!. Sir, I want to become a software enginear, I am doing ics now a days…. but I think I can do something in computer field.., so I want tell me some thing that will help me for become a software enginear as soon as possible… sir please help me for this..!!!

    I will be wait for your response sir

  31. Thanks A LOT. I’ve got a couple of these books on my shelf already. I’m not a Software engineer yet. This is my 4th and last year in college and soon I will be. I hope this helps me prepare myself for what lies ahead. 😀

  32. thank you so much 🙂

  33. […] 12 Most Influential Books Every Software Engineer Needs to Read […]

  34. why not any Data base book?

  35. Tnx you so much I am a electrical and electronic engineer but I wish to change to software engineer those books are rilly great for the biggineer spoke me

  36. Code complete is my absolute favorite – I also recommend it to many friends. I would also recommend “Dont make me think” book as a absolute must read for programmers to be able to design better software for usability.

  37. Hi, Is there is any sequence for reading these books. I am in the early stage of my career.

  38. am about studying software engineering. please where can I download this books and any further help will be appreciated

  39. Keshav Manikrao Rathod Avatar
    Keshav Manikrao Rathod

    I feel very happy by watching the great list of book and i just got 87% in 12 standard and now my journey get start towards best

  40. […] Source: 12 Most Influential Books Every Software Engineer Needs to Read […]

  41. I feel like you left out some books which are crucial for programmers too because they teach people skills. You should have included such a classic like Dale Carnegie’s “How to Win Friends & Influence People”. If you don’t mind, I will link my review of that book here: http://giedrius.blog/2017/10/25/review-dale-carnegie-how-to-win-friends-and-influence-people-for-programmers/

  42. I don’t know if am lost but it’s my first year in this major and am deeply lost I don’t even know where to start I feel like am useless in my head I have nothing coz I have never read non of the books and I haven’t even been on research I thank you for giving me a hand of help on this Sir..may God bless you.

  43. For example if I can’t afford these books by any means do you know the links for soft copies that I can try and peruse on them

  44. A good, quick read is Zed Shaw’s “Learn More Python 3 the hard way” which focuses way more on the how and why not technical details

  45. BOOKS TO READ
    Clean Code (and other books written by Bob Martin)
    Effective Java (especially chapters on immutability and inheritance)
    The ThoughtWorks Anthology (chapter on Object Calisthenics)
    The Art of Readable Code,
    Clean Code in a Nutshell,
    Timeless Laws of Software Development
    Hello Startup (chapter on Clean Code)
    The Pragmatic Programmer (especially parts about “Don’t Repeat Yourself” and “Broken Windows”)

    WEB ARTICLES TO READ
    Regarding avoiding deep nesting of blocks:
    https://blog.codinghorror.com/flattening-arrow-code/

Leave a Reply to EklasCancel reply

Hey!

I’m Bedrock. Discover the ultimate Minetest resource – your go-to guide for expert tutorials, stunning mods, and exclusive stories. Elevate your game with insider knowledge and tips from seasoned Minetest enthusiasts.

Join the club

Stay updated with our latest tips and other news by joining our newsletter.

Discover more from The Curious Programmer

Subscribe now to keep reading and get access to the full archive.

Continue reading