fbpx
Wikipedia

Structure and Interpretation of Computer Programs

Structure and Interpretation of Computer Programs (SICP) 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.[1][2] It teaches fundamental principles of computer programming, including recursion, abstraction, modularity, and programming language design and implementation.

Structure and Interpretation of Computer Programs
Cover of the second edition
AuthorHarold Abelson, Gerald Jay Sussman, Julie Sussman
SubjectComputer science
GenreTextbook
PublisherMIT Press
Publication date
1984 (1st ed.), 1996 (2nd ed.), 2022 (JavaScript ed.)
Pages657
ISBN0-262-51087-1 (2nd ed.)
LC ClassQA76.6 .A255 1996
Websitemitpress.mit.edu/sicp

MIT Press published the first edition in 1984, and the second edition in 1996. It was formerly used as the textbook for MIT's introductory course in computer science. SICP focuses on discovering general patterns for solving specific problems, and building software systems that make use of those patterns.[3]

MIT Press published the JavaScript edition in 2022.[4]

Content edit

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 with Procedures edit

  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 edit

  1. Introduction to Data Abstraction
  2. Hierarchical Data and the Closure Property
  3. Symbolic Data
  4. Multiple Representations for Abstract Data
  5. Systems with Generic Operations

Chapter 3: Modularity, Objects, and State edit

  1. Assignment and Local State
  2. The Environment Model of Evaluation
  3. Modeling with Mutable Data
  4. Concurrency: Time Is of the Essence
  5. Streams

Chapter 4: Metalinguistic Abstraction edit

  1. The Metacircular Evaluator
  2. Variations on a Scheme – Lazy Evaluation
  3. Variations on a Scheme – Nondeterministic Computing
  4. Logic Programming

Chapter 5: Computing with Register Machines edit

  1. Designing Register Machines
  2. A Register-Machine Simulator
  3. Storage Allocation and Garbage Collection
  4. The Explicit-Control Evaluator
  5. Compilation

Characters edit

Several 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 edit

The book is licensed under a Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.[5]

Coursework edit

The book was used as the textbook for MIT's former introductory programming course, 6.001,[6] from fall 1984 through its last semester, in fall 2007.[7] Other schools also made use of the book as a course textbook.[8] Various versions of the JavaScript edition have been used by the National University of Singapore since 2012 in the course CS1101S.[9]

Reception edit

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.[10]

Influence edit

SICP has been influential in computer science education, and several later books have been inspired by its style.

See also edit

References edit

  1. ^ Raymond, Eric S.; Steele, Guy (1991). The New hacker's dictionary. Internet Archive. Cambridge, Mass. : MIT Press. ISBN 978-0-262-68069-1.
  2. ^ "The Top 9 1/2 Books in a Hacker's Bookshelf", Grok code, retrieved 2010-10-23
  3. ^ Harvey, B (2011), "Why SICP matters?", The 150th anniversary of MIT, Boston Globe.
  4. ^ Structure and Interpretation of Computer Programs: JavaScript Edition, MIT Press, 2022
  5. ^ . MIT Press. Archived from the original on 2017-12-26. Retrieved 2007-11-11..
  6. ^ "Electrical Engineering and Computer Science; 6.001 Structure and Interpretation of Computer Programs". OpenCourseWare. MIT. Spring 2005. Retrieved 2020-06-21.
  7. ^ Guy, Donald, "The End of an Era", (blog comment), archived from the original on 2018-08-21, retrieved 2008-08-05, I talked to Professor Sussman on the phone... He said that he'd actually been trying to have 6.001 replaced for the last ten years (and I read somewhere that Professor Abelson was behind the move too). Understanding the principles is not essential for an introduction to the subject matter anymore. He sees 6.001 as obsolete.
  8. ^ . MIT Press. Archived from the original on 2022-04-23. Retrieved 2022-03-30.
  9. ^ "Department of Computer Science; CS1101S Programming Methodology". NUS. Fall 2021. Retrieved 2020-07-17.
  10. ^ Kilov, Haim (November 1986). Byte Magazine Volume 11 Number 12: Knowledge Representation. p. 70.

External links edit

  • Official website
  • Video lectures
  • Book compiled from TeX source
  • Structure and Interpretation of Computer Programs. Interactive Version

structure, interpretation, computer, programs, sicp, redirects, here, other, uses, sicp, disambiguation, sicp, computer, science, textbook, massachusetts, institute, technology, professors, harold, abelson, gerald, sussman, with, julie, sussman, known, wizard,. SICP redirects here For other uses see SICP disambiguation Structure and Interpretation of Computer Programs SICP 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 1 2 It teaches fundamental principles of computer programming including recursion abstraction modularity and programming language design and implementation Structure and Interpretation of Computer ProgramsCover of the second editionAuthorHarold Abelson Gerald Jay Sussman Julie SussmanSubjectComputer scienceGenreTextbookPublisherMIT PressPublication date1984 1st ed 1996 2nd ed 2022 JavaScript ed Pages657ISBN0 262 51087 1 2nd ed LC ClassQA76 6 A255 1996Websitemitpress wbr mit wbr edu wbr sicpMIT Press published the first edition in 1984 and the second edition in 1996 It was formerly used as the textbook for MIT s introductory course in computer science SICP focuses on discovering general patterns for solving specific problems and building software systems that make use of those patterns 3 MIT Press published the JavaScript edition in 2022 4 Contents 1 Content 1 1 Chapter 1 Building Abstractions with Procedures 1 2 Chapter 2 Building Abstractions with Data 1 3 Chapter 3 Modularity Objects and State 1 4 Chapter 4 Metalinguistic Abstraction 1 5 Chapter 5 Computing with Register Machines 2 Characters 3 License 4 Coursework 5 Reception 6 Influence 7 See also 8 References 9 External linksContent editThe 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 with Procedures edit The Elements of Programming Procedures and the Processes They Generate Formulating Abstractions with Higher Order ProceduresChapter 2 Building Abstractions with Data edit Introduction to Data Abstraction Hierarchical Data and the Closure Property Symbolic Data Multiple Representations for Abstract Data Systems with Generic OperationsChapter 3 Modularity Objects and State edit Assignment and Local State The Environment Model of Evaluation Modeling with Mutable Data Concurrency Time Is of the Essence StreamsChapter 4 Metalinguistic Abstraction edit The Metacircular Evaluator Variations on a Scheme Lazy Evaluation Variations on a Scheme Nondeterministic Computing Logic ProgrammingChapter 5 Computing with Register Machines edit Designing Register Machines A Register Machine Simulator Storage Allocation and Garbage Collection The Explicit Control Evaluator CompilationCharacters editSeveral 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 reasonerLicense editThe book is licensed under a Creative Commons Attribution ShareAlike 4 0 International CC BY SA 4 0 license 5 Coursework editThe book was used as the textbook for MIT s former introductory programming course 6 001 6 from fall 1984 through its last semester in fall 2007 7 Other schools also made use of the book as a course textbook 8 Various versions of the JavaScript edition have been used by the National University of Singapore since 2012 in the course CS1101S 9 Reception editByte 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 10 Influence editSICP has been influential in computer science education and several later books have been inspired by its style Structure and Interpretation of Classical Mechanics SICM 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 HtDP which intends to be a more accessible book for introductory Computer Science and to address perceived incongruities in SICP Essentials of Programming Languages EoPL a book for Programming Languages coursesSee also editStructure and Interpretation of Computer Programs JavaScript Edition Compilers Principles Techniques and Tools also known as The Dragon BookReferences edit Raymond Eric S Steele Guy 1991 The New hacker s dictionary Internet Archive Cambridge Mass MIT Press ISBN 978 0 262 68069 1 The Top 9 1 2 Books in a Hacker s Bookshelf Grok code retrieved 2010 10 23 Harvey B 2011 Why SICP matters The 150th anniversary of MIT Boston Globe Structure and Interpretation of Computer Programs JavaScript Edition MIT Press 2022 SICP MIT Press Archived from the original on 2017 12 26 Retrieved 2007 11 11 Electrical Engineering and Computer Science 6 001 Structure and Interpretation of Computer Programs OpenCourseWare MIT Spring 2005 Retrieved 2020 06 21 Guy Donald The End of an Era MIT Admissions blog comment archived from the original on 2018 08 21 retrieved 2008 08 05 I talked to Professor Sussman on the phone He said that he d actually been trying to have 6 001 replaced for the last ten years and I read somewhere that Professor Abelson was behind the move too Understanding the principles is not essential for an introduction to the subject matter anymore He sees 6 001 as obsolete Universities and Colleges Using SICP MIT Press Archived from the original on 2022 04 23 Retrieved 2022 03 30 Department of Computer Science CS1101S Programming Methodology NUS Fall 2021 Retrieved 2020 07 17 Kilov Haim November 1986 Byte Magazine Volume 11 Number 12 Knowledge Representation p 70 External links editOfficial website Video lectures Book compiled from TeX source Structure and Interpretation of Computer Programs Interactive Version Retrieved from https en wikipedia org w index php title Structure and Interpretation of Computer Programs amp oldid 1177876056, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.