Check nearby libraries
Buy this book

本书曾是美国麻省理工学院计算机科学专业的入门课程教材之一,从理论上讲解计算机程序的创建、执行和研究。主要内容包括:构造过程抽象,构造数据抽象,模块化、对象和状态,元语言抽象,寄存器机器里的计算等。
Check nearby libraries
Buy this book

Previews available in: Chinese English
Subjects
Computer programming, LISP (Computer program language), mirror, pdf.yt, Computer science, Electronic digital computers, programming, LISP (Langage de programmation), Programmeren (computers), Computers, Programmation (Informatique), Programmierung, LISP, Programming, TI 99/4A (Computer), LOGO (Computer program language), TI 99/4 (Computer), scheme, Computer systemsprogramming, Qa76.6 .a255 1985, Qa 76.6 a141s 1985, 001.64/2, Computer programs, Computer programs, designEdition | Availability |
---|---|
01
Structure and Interpretation of Computer Programs: JavaScript Edition
2022, MIT Press
in English
0262543230 9780262543231
|
zzzz
|
02 |
aaaa
|
03
Structure and Interpretation of Computer Programs [Paperback] [Jan 01, 2005] Harold Abelson, Gerald Jay Sussman, Julie Sussman
Jun 21, 2005, Orient Black Swan
8173715270 9788173715273
|
cccc
|
04
Ji suan ji cheng xu de gou zao he jie shi: Structure and interpretation of computer programs
2004, Ji xie gong ye chu ban she
in Chinese
- Ju yuan shu di 2 ban yi chu
7111135105 9787111135104
|
cccc
|
05
Struktura i interpretacja programów komputerowych
2002, Wydawnictwa Naukowo-Techniczne
Hardcover
8320427126 9788320427127
|
zzzz
|
06
Struktur und Interpretation von Computerprogrammen: Eine Informatik-Einführung (Springer-Lehrbuch)
September 11, 2001, Springer
Paperback
in German
- 4., durchges. Aufl. edition
3540423427 9783540423423
|
zzzz
|
07
Struktur und Interpretation von Computerprogrammen. Eine Informatik-Einführung
November 17, 1998, Springer Verlag
Paperback
in German
- 3., ÃBERARB. AUFL. 1998 edition
3540638989 9783540638988
|
zzzz
|
08
Struktur und Interpretation von Computerprogrammen: Eine Informatik-Einführung
March 25, 1996, Springer
Paperback
in German
- 2., unveränd. Aufl. edition
3540569340 9783540569343
|
zzzz
|
09
Structure and interpretation of computer programs, second edition
1996, MIT Press, McGraw-Hill
in English
- Second Edition
0262011530 9780262011532
|
zzzz
|
10
Structure and Interpretation of Computer Programs
July 25th 1996, MIT Press Ltd, M I T Press, MIT Press Ltd, M I T Press, McGraw-Hill Higher Education
- Second Edition
0262011530 9780262011532
|
zzzz
|
11 |
zzzz
|
12
Abelson: Structure & Interpretation of Computer Programs - Exercise Disks for Apple Mac Computers (Phamplet/disk) (PR Only)
July 4, 1994, MIT Press
Hardcover
0262510456 9780262510455
|
zzzz
|
13 |
zzzz
|
14
Structure and interpretation of computer programs
1985, MIT Press
in English
0262510367 9780262510363
|
zzzz
|
15
Structure and interpretation of computer programs
1985, MIT Press, McGraw-Hill
in English
0262010771 9780262010771
|
cccc
|
16
Structure and interpretation of computer programs
1985, MIT Press, McGraw-Hill
in English
0262010771 9780262010771
|
cccc
|
Book Details
Table of Contents
出版者的话
序
第2版前言
第1版前言
致谢
第1章 构造过程抽象1
1.1 程序设计的基本元素3
1.1.1 表达式3
1.1.2 命名和环境5
1.1.3 组合式的求值6
1.1.4 复合过程7
1.1.5 过程应用的代换模型9
1.1.6 条件表达式和谓词11
1.1.7 实例:采用牛顿法求平方根14
1.1.8 过程作为黑箱抽象17
1.2 过程及其产生的计算20
1.2.1 线性的递归和迭代21
1.2.2 树形递归24
1.2.3 增长的阶28
1.2.4 求幂29
1.2.5 最大公约数32
1.2.6 实例:素数检测33
1.3 用高阶函数做抽象37
1.3.1 过程作为参数37
1.3.2 用lambda构造过程41
1.3.3 过程作为一般性的方法44
1.3.4 过程作为返回值48
第2章 构造数据抽象53
2.1 数据抽象导引55
2.1.1 实例:有理数的算术运算55
2.1.2 抽象屏障58
2.1.3 数据意味着什么60
2.1.4 扩展练习:区间算术62
2.2 层次性数据和闭包性质65
2.2.1 序列的表示66
2.2.2 层次性结构72
2.2.3 序列作为一种约定的界面76
2.2.4 实例:一个图形语言86
2.3 符号数据96
2.3.1 引号96
2.3.2 实例:符号求导99
2.3.3 实例:集合的表示103
2.3.4 实例:Huffman编码树109
2.4 抽象数据的多重表示115
2.4.1 复数的表示116
2.4.2 带标志数据119
2.4.3 数据导向的程序设计和可加性122
2.5 带有通用型操作的系统128
2.5.1 通用型算术运算129
2.5.2 不同类型数据的组合132
2.5.3 实例:符号代数138
第3章 模块化、对象和状态149
3.1 赋值和局部状态149
3.1.1 局部状态变量150
3.1.2 引进赋值带来的利益154
3.1.3 引进赋值的代价157
3.2 求值的环境模型162
3.2.1 求值规则163
3.2.2 简单过程的应用165
3.2.3 将框架看作局部状态的展台167
3.2.4 内部定义171
3.3 用变动数据做模拟173
3.3.1 变动的表结构173
3.3.2 队列的表示180
3.3.3 表格的表示183
3.3.4 数字电路的模拟器188
3.3.5 约束的传播198
3.4 并发:时间是一个本质问题206
3.4.1 并发系统中时间的性质207
3.4.2 控制并发的机制210
3.5 流220
3.5.1 流作为延时的表220
3.5.2 无穷流226
3.5.3 流计算模式的使用232
3.5.4 流和延时求值241
3.5.5 函数式程序的模块化和对象的
模块化245
第4章 元语言抽象249
4.1 元循环求值器251
4.1.1 求值器的内核252
4.1.2 表达式的表示255
4.1.3 求值器数据结构260
4.1.4 作为程序运行求值器264
4.1.5 将数据作为程序266
4.1.6 内部定义269
4.1.7 将语法分析与执行分离273
4.2 Scheme的变形—惰性求值276
4.2.1 正则序和应用序277
4.2.2 一个采用惰性求值的解释器278
4.2.3 将流作为惰性的表284
4.3 Scheme的变形—非确定性计算286
4.3.1 amb和搜索287
4.3.2 非确定性程序的实例290
4.3.3 实现amb求值器296
4.4 逻辑程序设计304
4.4.1 演绎信息检索306
4.4.2 查询系统如何工作315
4.4.3 逻辑程序设计是数理逻辑吗321
4.4.4 查询系统的实现324
第5章 寄存器机器里的计算343
5.1 寄存器机器的设计344
5.1.1 一种描述寄存器机器的语言346
5.1.2 机器设计的抽象348
5.1.3 子程序351
5.1.4 采用堆栈实现递归354
5.1.5 指令总结358
5.2 一个寄存器机器模拟器359
5.2.1 机器模型360
5.2.2 汇编程序364
5.2.3 为指令生成执行过程366
5.2.4 监视机器执行372
5.3 存储分配和废料收集374
5.3.1 将存储看作向量374
5.3.2 维持一种无穷存储的假象378
5.4 显式控制的求值器383
5.4.1 显式控制求值器的内核384
5.4.2 序列的求值和尾递归388
5.4.3 条件、赋值和定义391
5.4.4 求值器的运行393
5.5 编译397
5.5.1 编译器的结构399
5.5.2 表达式的编译402
5.5.3 组合式的编译407
5.5.4 指令序列的组合412
5.5.5 编译代码的实例415
5.5.6 词法地址422
5.5.7 编译代码与求值器的互连425
参考文献431
练习表437
索引439
Edition Notes
Edition Identifiers
Work Identifiers
Source records
Promise ItemWork Description
Wizard Book n. Hal Abelson's, Jerry Sussman's and Julie Sussman's Structure and Interpretation of Computer Programs (MIT Press, 1984; ISBN 0-262-01077-1), an excellent computer science text used in introductory courses at MIT. So called because of the wizard on the jacket. One of the bibles of the LISP/Scheme world. Also, less commonly, known as the Purple Book.
from The New Hacker's Dictionary, 2nd edition (MIT Press, 1993)
Links outside Open Library
Community Reviews (0)
History
- Created August 12, 2023
- 5 revisions
Wikipedia citation
×CloseCopy and paste this code into your Wikipedia page. Need help?
July 13, 2024 | Edited by ImportBot | import existing book |
December 17, 2023 | Edited by Tom Morris | Merge works |
August 12, 2023 | Edited by 南狐 | Edited without comment. |
August 12, 2023 | Edited by 南狐 | //covers.openlibrary.org/b/id/14408670-S.jpg |
August 12, 2023 | Created by 南狐 | Added new book. |