编程珠玑・续(英文版)

编程珠玑・续(英文版) pdf epub mobi txt 电子书 下载 2025

出版者:人民邮电出版社
作者:乔恩·本特利 (Jon Bentley)
出品人:
页数:202
译者:
出版时间:2015-12
价格:39.00
装帧:平装
isbn号码:9787115408051
丛书系列:图灵原版计算机科学系列
图书标签:
  • 算法
  • 计算机科学
  • 编程
  • 数据结构
  • 已购买
  • Programming
  • 珠玑
  • 英文版
  • 算法
  • 编程
  • 思维
  • 实践
  • 计算机科学
  • 问题求解
想要找书就要到 小美书屋
立刻按 ctrl+D收藏本页
你会得到大惊喜!!

具体描述

本书是计算机科学方面的经典名著《编程珠玑》的姊妹篇,讲述了对于程序员有共性的知识。本书延续了《编程珠玑》的特色,通过一些精心设计的有趣而又颇具指导意义的程序,对实用程序设计技巧及基本设计原则进行透彻而睿智的描述,为复杂的编程问题提供清晰而完备的解决思路。书中涵盖了程序员操纵程序的技术、程序员取舍的技巧、输入和输出设计以及算法示例,这些内容结合成一个有机的整体,如一串串珠玑展示给程序员。本书对各个层次的程序员都具有很高的阅读价值。

作者简介

Jon Bentley 计算机科学家,被誉为影响算法发展的十位大师之一。他先后任职于卡内基-梅隆大学(1976—1982)、贝尔实验室(1982—2001)和Avaya实验室(2001年至今)。在卡内基-梅隆大学担任教授期间,他培养了包括Tcl语言设计者John Ousterhout、Java语言设计者James Gosling、《算法导论》作者之一Charles E.Leiserson在内的许多计算机科学大家。2004年荣获Dr. Dobb's程序设计卓越奖。

目录信息

Part Ⅰ: PROGRAMMING TECHNIQUES1
第一部分 编程技术
Column 1: Profilers3
第1章 性能监视工具
Computing Primes / 计算素数
Using Profilers / 使用性能监视工具
A Specialized Profiler / 专用的性能监视工具
Building Profilers / 开发性能监视工具
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Column 2: Associative Arrays15
第2章 关联数组
Associative Arrays in Awk / Awk中的关联数组
A Finite State Machine Simulator / 有穷状态机模拟器
Topological Sorting / 拓扑排序
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Column 3: Confessions of a Coder27
第3章 程序员的忏悔
Binary Search / 二分搜索
Selection / 选择算法
A Subroutine Library / 子程序库
Principles / 原理
Problems / 习题
Column 4: Self—Describing Data37
第4章 自描述数据
Name—Value Pairs / 名字—值对
Provenances in Programming / 记录来历
A Sorting Lab / 排序实验
Principles / 原理
Problems / 习题
Part Ⅱ: TRICKS OF THE TRADE45
第二部分 实用技巧
Column 5: Cutting the Gordian Knot47
第5章 劈开戈尔迪之结
A Quiz / 小测验
Some Solutions / 解答
Hints / 提示
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Debugging / 调试(边栏)
Column 6: Bumper—Sticker Computer Science57
第6章 计算机科学箴言集
Coding / 编码
User Interfaces / 用户界面
Debugging / 调试
Performance / 性能
Documentation / 文档
Managing Software / 软件管理
Miscellaneous Rules / 其他
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Column 7: The Envelope is Back69
第7章 粗略估算
A Warm—Up for Cool Brains / 头脑热身
Performance Rules of Thumb / 性能的经验法则
Little’s Law / Little定律
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Quick Calculations in Everyday Life / 日常速算(边栏)
Column 8: The Furbelow Memorandum77
第8章 人员备忘录
The Memo / 备忘录
Principles / 原理
Further Reading / 深入阅读
Part Ⅲ: I/O FIT FOR HUMANS81
第三部分 人性化I/O
Column 9: Little Languages83
第9章 小语言
The Pic Language / Pic语言
Perspective / 视角
Pic Preprocessors / Pic预处理器
Little Languages for Implementing Pic / 用来实现Pic的小语言
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Column 10: Document Design101
第10章 文档设计
Tables / 表格
Three Design Principles / 三条设计原则
Figures / 插图
Text / 文本
The Right Medium / 合适的媒介
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
A Catalog of Pet Peeves / 次要问题目录(边栏)
Column 11: Graphic Output115
第11章 图形化输出
A Case Study / 实例研究
A Sampler of Displays / 显示结果取样
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Napoleon’s March to Moscow / 拿破仑远征莫斯科(边栏)
Column 12: A Survey of Surveys127
第12章 对调查的研究
The Problems of Polling / 有关民意调查的问题
The Languages / 语言
The Pictures / 图片
Principles / 原理
Problems / 习题
Part Ⅳ: ALGORITHMS137
第四部分 算法
Column 13: A Sample of Brilliance139
第13章 绝妙的取样
A Sampling of Sampling Algorithms / 取样算法一瞥
Floyd’s Algorithm / Floyd算法
Random Permutations / 随机排列
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Column 14: Birth of a Cruncher147
第14章 / 编写数值计算程序
The Problem / 问题
Newton Iteration / 牛顿迭代
A Great Place to Start / 良好的起点
The Code / 代码
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
A Big Success Story / 数值算法的力量(边栏)
Column 15: Selection159
第15章 选择
The Problem / 问题
The Program / 程序
Analysis of Run Time / 运行时间分析
Principles / 原理
Problems / 习题
Further Reading / 深入阅读
Appendix 1: The C and Awk Languages171
附录A C和Awk语言
Appendix 2: A Subroutine Library175
附录B 子程序库
Solutions to Selected Problems183
部分习题答案
· · · · · · (收起)

读后感

评分

编程珠玑 II 没有再版,我觉得原因之一是它没有第一本写的好,内容充实 本书有不少内容与第一部分重复,比如粗略估算,最后一部分的算法内容也基本上没有突出的东西,随机取样第一本里已提到,这里介绍了一个 Floyd 算法,最后的 find 第 K 个大的数,是上一本中的快排的变形...  

评分

Programming pearls is essentially a collection of column articles written by author in the 80s. Each article delivers an insight to the practical problem every programmer will meet in their daily job. It differ from the introduction to algorithm that progra...  

评分

打开书本看了第一章,突然被这一章所吸引住了。 真正完美的将算法和编程完美的结合,第一次这编程有美的感受,或者说编程能像数学一样优雅。 也告诉我们,向别人求助时一定要准确的定位问题。 只有准确的定位出问题才能真正找到适合的算法。 在看第一章这前我将前言看了一下,...  

评分

在(原书)出版后很长的时间中, 算法本身也随着很多行业领域的发展有了很大的变化. 举例来说, 游戏行业为了更快的渲染, 找出了求欧式距离的高速近似算法. 很多其它问题也有了现代且更加高速的解法(但适用条件可能有所不同). 基于这一点, 希望看到这个评论的同学注意一下, 比较现...  

评分

编程珠玑 II 没有再版,我觉得原因之一是它没有第一本写的好,内容充实 本书有不少内容与第一部分重复,比如粗略估算,最后一部分的算法内容也基本上没有突出的东西,随机取样第一本里已提到,这里介绍了一个 Floyd 算法,最后的 find 第 K 个大的数,是上一本中的快排的变形...  

用户评价

评分

评分

评分

评分

评分

本站所有内容均为互联网搜索引擎提供的公开搜索信息,本站不存储任何数据与内容,任何内容与数据均与本站无关,如有需要请联系相关搜索引擎包括但不限于百度google,bing,sogou

© 2025 book.quotespace.org All Rights Reserved. 小美书屋 版权所有