程序设计实践(英文版)(美 柯奈汉 派克,机械工业出版社)的详细介绍,评论,读后感及网上价格比较。

好图书-图书价格比较与图书搜索
首页 | 排行榜 | 新书上架 | 优惠情报 | 图书分类 | 全国书店 | 请注册 或 登陆
搜索 1,698,046 种书的介绍和售价       高级搜索  使用帮助

好图书搜索 25 家网上书店, 1,698,046 种图书,售价及其他信息。 更多介绍

程序设计实践(英文版)

程序设计实践(英文版)

美 柯奈汉 派克 W.Kernighan Rob Rike Pike

7111091574

机械工业出版社 / 2002-04-01

精装 / 850*1 / 267页 / 0字

¥22.00

 (4家书店)

"程序设计实践(英文版)"的详细介绍……

《经典原版书库》系列丛书是响应教育部提出的使用原版国外教材的号召,为国内高校的计算机教学度身打造的。在广泛地征求并听取丛书的“专家指导委员会”的意见后,最终选定了30多种篇幅内容适度、讲解鞭辟入里的教材,其中的大部分已经被M.I.T、Stanford、U.C.Berkley、C.M.U.等世界名牌大学采用。丛书不仅涵盖了程序设计、数据结构、操作系统、计算机体系结构、数据库、编译原理、软件工程、图形学、通信与网络、离散数学等国内大学计算机专业普遍开设的核心课程,而且各具特色——有的出自语言设计者之手、有的历三十年而不衰,有的已被全世界的几百所高校采用。在这些圆熟通博的名师大作的指引之下,读者必将在计算机科学的宫殿中由登堂而入室。

本书是其中一册。

哪里可以买到"程序设计实践(英文版)"?

从 4 家优秀的网上书店中选购"程序设计实践(英文版)"

书店名称 价格 购买 去看看
去当当网购买'程序设计实践(英文版)' ¥15.40
去蔚蓝书店购买'程序设计实践(英文版)' ¥15.18
去人大出版社购买'程序设计实践(英文版)' ¥17.60
去卓越亚马逊购买'程序设计实践(英文版)' ¥15.70

 

※ 如果您是第一次来到好图书选购图书,请点此查看“购书指南”

※ 发现价格错误了?书店有售而好图书却没有显示?立刻点此给好图书改错

※ 图书价格仅供参考,实际售价及是否有库存以各网站实际标示为准。

※ 若售价差别过大,可能因不同规格或者版本引起,请自行甄别。

 

对"程序设计实践(英文版)"的评论……

暂无评论

我来评论一下"程序设计实践(英文版)"……

登录之后才能发表评论,请  登录  或  注册

"程序设计实践(英文版)"的图书目录……

Preface



Chapter 1: Style



1.1 Names

1.2 Expressions and Statements

1.3 Consistency and Idioms

1.4 Function Macros

1.5 Magic Numbers

1.6 Comments

1.7 Why Bother?



Chapter 2: Algorithms and Data Structures



2.1 Searching

2.2 Sorting

2.3 Libraries

2.4 A Java Quicksort

2.5 O-Notation

2.6 Growing Arrays

2.7 Lists

2.8 Trees

2.9 Hash Tables

2.10 Summary



Chapter 3: Design and Implementation



3.1 The Markov Chain Algorithm

3.2 Data Structure Altematives

3.3 Building the Data Structure in C

3.4 Generating Output

3.5 Java

3.6 C++

3.7 Awk and Perl

3.8 Performance

3.9 Lessons



Chapter 4: Interfaces



4.1 Comma-Separated Values

4.2 A Prototype Library

4.3 A Library for Others

4.4 A C++ Implementation

4.5 Interface Principles

4.6 Resource Management

4.7 Abort, Retry, Fail?

4.8 User Interfaces



Chapter 5: Debugging



5.2 Debuggers

5.2 Good Clues, Easy Bugs

5.3 No Clues, Hard Bugs

5.4 Last Resorts

5.5 Non-reproducible Bugs

5.6 Debugging Tools

5.7 Other People's Bugs

5.8 Summary



Chapter 6: Testing



6.1 Test as You Write the Code

6.2 Systematic Testing

6.3 Test Automation

6.4 Test Scaffolds

6.5 Stress Tests

6.6 Tips for Testing

6.7 Who Does the Testing?

6.8 Testing the Markov Program

6.9 Summary



Chapter 7: Performance



7.1 A Bottleneck

7.2 Timing and Profiling

7.3 Strategies for Speed

7.4 Tuning the Code

7.5 Space Efficiency

7.6 Estimation

7.7 Summary



Chapter 8: Portability



8.1 Language

8.2 Headers and Libraries

8.3 Program Organization

8.4 Isolation

8.5 Data Exchange

8.6 Byte Order

8.7 Portability and Upgrade

8.8 Internationalization

8.9 Summary



Chapter 9: Notation



9. 1 Formatting Data

9.2 Regular Expressions

9.3 Programmab1e Tools

9.4 InterPreters, Compilers, and Virtual Machines

9.5 Programs that Write Programs

9.6 Using Macros to Generate Code

9.7 Compiling on the Fly



Epilogue

Appendix: Collected Rules

Index

"程序设计实践(英文版)"的书摘……

It is an old observation that the best writers sometimes disregard the rules of rhetoric. When they do so, however, the reader will usually find in the sentence some compensation merit, attained at the cost of the violation. Unless he is certain of doing as well, he will probably do best to follow the rules.

Its carefully written, formatted, and commented, and the program it comes from works extremely well; the programmers who created this system are rightly proud of what they built. But this excerpt is puzzling to the casual reader. What relationship links Singapore, Brunei, Poland and Italy? Why isnt Italy mentioned in the comment? Since the comment and the code differ, one of them must be wrong. Maybe both are. The code is what gets executed and tested, so its more likely to be right; probably the comment didnt get updated when the code did. The comment doesnt say enough about the relationship among the three countries it does mention; if you had to maintain this code, you would need to know more.

The few lines above are typical of much real code: mostly well done, but with some things could be improved.

本站所列的图书资料、图书封面图片归各自的版权所有人所有

本站所收录之图书评论、图书社区话题、及本站所做之广告均属其各自行为,与本站立场无关,不代表本站赞同其观点