Structure and Interpretation of Computer Programs


Structure and Interpretation of Computer Programs is a computer science textbook by Massachusetts Institute of Technology professors Harold Abelson and Gerald Jay Sussman with Julie Sussman. It is known as the "Wizard Book" in hacker culture. It teaches fundamental principles of computer programming, including recursion, abstraction, modularity, and programming language design and implementation.
MIT Press published the first edition in 1984, and the second edition in 1996. It was used as the textbook for MIT's introductory course in computer science from 1984 to 2007. SICP focuses on discovering general patterns for solving specific problems, and building software systems that make use of those patterns.
MIT Press published a JavaScript version of the book in 2022.

Content

The book describes computer science concepts using Scheme, a dialect of Lisp. It also uses a virtual register machine and assembler to implement Lisp interpreters and compilers.
Topics in the books are:

Chapter 1: Building Abstractions">Abstraction (computer science)">Abstractions with Procedures">Function (computer programming)">Procedures

  1. The Elements of Programming
  2. Procedures and the Processes They Generate
  3. Formulating Abstractions with Higher-Order Procedures

    Chapter 2: Building Abstractions with [Data]

  4. Introduction to Data Abstraction
  5. Hierarchical Data and the Closure Property
  6. Symbolic Data
  7. Multiple Representations for Abstract Data
  8. Systems with Generic Operations

    Chapter 3: Modularity, Objects">Object (computer science)">Objects, and State">State (computer science)">State

  9. Assignment and Local State
  10. The Environment Model of Evaluation
  11. Modeling with Mutable Data
  12. Concurrency: Time Is of the Essence
  13. Streams

    Chapter 4: Metalinguistic">Metalinguistics">Metalinguistic Abstraction

  14. The Metacircular Evaluator
  15. Variations on a Scheme – Lazy Evaluation
  16. Variations on a Scheme – Nondeterministic Computing
  17. Logic Programming

    Chapter 5: Computing with Register Machines">Register machine">Register Machines

  18. Designing Register Machines
  19. A Register-Machine Simulator
  20. Storage Allocation and Garbage Collection
  21. The Explicit-Control Evaluator
  22. Compilation

    Characters

Several humorously-named fictional characters appear in the book:
  • Alyssa P. Hacker, a Lisp hacker
  • Ben Bitdiddle
  • Cy D. Fect, a "reformed C programmer"
  • Eva Lu Ator
  • Lem E. Tweakit
  • Louis Reasoner, a "loose reasoner"

    License

The book is licensed under a Creative Commons Attribution-ShareAlike 4.0 International license.

Coursework

The book was used as the textbook for MIT's former introductory programming course, 6.001, from fall 1984 through its last semester, in fall 2007. Other schools also made use of the book as a course textbook.

Reception

Byte recommended SICP in 1986 "for professional programmers who are really interested in their profession". The magazine said that the book was not easy to read, but that it would expose experienced programmers to both old and new topics.
A review of SICP as an undergraduate textbook by Philip Wadler noted the weaknesses of the Scheme language as an introductory language for a computer science course. Wadler criticized in particular the lack of pattern matching, obscuring equational reasoning and making the teaching of proofs harder; the lack of algebraic data types in Scheme and the over-reliance on cons pairs for both code and data representation, which can confuse beginning students; and the choice of strict instead of lazy evaluation as the standard evaluation strategy.

Influence

SICP has been influential in computer science education, and several later books have been inspired by its style.
  • Structure and Interpretation of Classical Mechanics , another book that uses Scheme as an instructional element, by Gerald Jay Sussman and Jack Wisdom
  • Software Design for Flexibility, by Chris Hanson and Gerald Jay Sussman
  • How to Design Programs , which intends to be a more accessible book for introductory Computer Science, and to address perceived deficiencies in SICP
  • Essentials of Programming Languages , a book for Programming Languages courses