算法Ⅰ~Ⅳ(C++实现):基础、数据结构、排序和搜索

出版时间:2002-1  出版社:高等教育出版社  作者:Sedgewick  页数:716  字数:1140000  
Tag标签:无  

内容概要

本书通过C++实现方案以简洁、直接的方式对书中的算法和数据结构进行表述,并向学生提供在实际应用中验证这种方法的手段。  本书广泛地论述了与排序、搜索及相关应用有关的基本数据结构和算法。覆盖了数组、链表、串、树和其他基本数据结构,更多地强调抽象数据类型(ADT)、模块化程序设计、面向对象程序设计和C++类。本书包括排序、选择、优先队列ADT实现和符号表ADT(搜索)实现,配有帮助学生学习计算机算法特性的1000多种新练习、100多个图表以及大量的程序例子。  Robert Sedgewick完全重定了他的著作,对它进行了充分的扩展和更新,涵盖了目前重要的算法和数据结构。Christopher Van Wyk和Sedgewick开发的新实现采用的是C++语言,这种实现不仅能简洁直接地表达算法,而且给编程者提供了实践的方法,以便在真正的应用中测试这些算法。  新的版本提供了很多新算法,而且对每个算法的解释也比以前的版本详细得多。新的版面设计以及详细、富有创意并且具有注释的插图,使本书的表达能力大大地提高了。第三版保留了将理论和实践成功混合在一起的特点,正是这一点,使Sedgewick的著作成为25万多名程序员无价的参考资源。  本书是全卷的前半部分,涵盖了基本的数据结构、排序算法、搜索算法以及它们的相关应用。虽然本书实质上可以用于各种语言的程序设计,Christopher Van Wyk和Sedgewick的实现都采用了C++类和ADT实现的自然对应。  本书的精彩内容包括:    ·扩展了对数组、链表、字符串树及其他基本数据结构的介绍。    ·比以前的版本更中着重于抽象数据类型(ADT)、模块化程序设计方法、面向对象的程序 设计方法和C++类。    ·有关排序、选择、优先级队列ADT实现和符号表ADT(搜索)实现的算法,超过100个。    ·关于二项式队列、多路基数排序、随机化BST、发散树、跳跃表、多叉线索、B树、可扩充散列等,采用了新的实现。    ·关于算法的量化分析,是比较算法的依据。    ·1000多条新的练习,帮助读者学习算法。  无论是你初学算法,还是想找一本将最新C++经典算法和新算法融入程序设计的参考手册,你都会发现本书提供了丰富的有用信息。

作者简介

作者Robert Sedgewick是美国普林斯顿大学计算机科学系教授,也是Adobe系统领导者之一,曾任Xerox PARC公司、国防分析学院、INRIA公司研究组成员。

书籍目录

FundamentalsChapter 1.Introduction 1.1 Algorithms 1.2 A Sample Problem-Connectivity 1.3 Union-Find Algorithms 1.4 Perspective 1.5 Summary of Topics Chapter 2.Principles of Algorithm Analysis 2.1 Implementation and Empirical Analysis 2.2 Analysis of Algorithms 2.3 Growth of Functions 2.4 Big-Oh Notation 2.5 Basic Recurrences 2.6 Examples of Algorithm Analysis 2.7 Guarantees, Predictions, and Limitations Data StructuresChapter 3.Elementary Data Structures 3.1 Building Blocks 3.2 Arrays' S33.3 Linked Lists 3.4 Elementary List Processing 3.5 Memory Allocation for Lists3.6 Strings 3.7 Compound Data Structures Chapter 4.Abstract Data Types 4.1 Abstract Objects and Collections of Objects 4.2 Pushdown Stack ADT4.3 Examples of Stack ADT Clients 4.4 Stack ADT Implementations 4.S Creation of a New ADT 4.6 FIFO Queues and Generalized Queues4.7 Duplicate and Index Items 4.8 First-Class ADTs 4.9 Application-Based ADT Example4.10 PerspectiveChapter 5.Recursion and Trees 5.1 Recursive Algorithms5.2 Divide and Conquer 5.3 Dynamic Programming5.4 Trees 5.5 Mathematical Properties of Trees 5.6 Tree Traversal5.7 Recursive Binary-Tree Algorithms 5.8 Graph Traversal5.9 PerspectiveSortingChapter 6.Elementary Sorting Methods 6.1 Rules of the Game 6.2 Selection Sort6.3 Insertion Sort6.4 Bubble Sort6.5 Performance Characteristics of Elementary Sorts 6.6 Shellsort 6.7 Sorting Other Types of Data6.8 Index and Pointer Sorting6.9 Sorting Linked Lists6.10 Key-Indexed Counting Chapter 7.Quicksort 7.1 The Basic Algorithm 7.2 Performance Characteristics of Quicksort 7.3 Stack Size 7.4 Small Subfiles 7.5 Median-of-Three Partitioning7.6 Duplicate Keys 7.7 Strings and Vectors 7.8 SelectionChapter 8.Merging and Mergesort 8.1 Two-Way Merging 8.2 Abstract In-Place Merge8.3 Top-Down Mergesort 8.4 Improvements to the Basic Algorithm 8.5 Bottom-UP Mergesort8.6 Performance Characteristics of Mergesort 8.7 Linked-List Implementations of Mergesort 8.8 Recursion Revisited Chapter 9.Priority Queues and Heapsort 9.1 Elementary Implementations9.2 Heap Data Structure9.3 Algorithms on Heaps9.4 Heapsort 9.5 Priority-Queue ADT9.6 Priority Queues for Index Items9.7 Binomial QueuesChapter 10.Radix Sorting 10.1 Bits, Bytes, and Words 10.2 Binary Quicksort 10.3 MSD Radis Sort 10.4 Three-Way Radin Quicksort 10.S LSD Radis Sort 10.6 Performance Characteristics of Radix Sorts10.7 Sublinear-Time Sorts Chapter 11.Spedal-Purpose Sorts 11.1 Batcher's Odd-Even Mergesort 11.2 Sorting Networks 11.3 External Sorting11.4 Sort-Merge Implementations11.5 Parallel Sort/Merge SearchingChapter 12.Symbol Tables and BSTs 12.1 Symbol-Table Abstract Data Type12.2 Key-Indexed Search12.3 Sequential Search12.4 Binary Search 12.5 Binary Search Trees (BSTs) 12.6 Performance Characteristics of BSTs12.7 Index Implementations with Symbol Tables 12.8 Insertion at the Root in BSTs 12.9 BST Implementations of Other ADT FunctinnsChapter 13.Balanced Trees 13.1 Randomized BSTs 13.2 Splay BSTs13.3 Top-Down 2-3-4 Trees 13.4 Red-Black Trees13.5 Skip Lists13.6 Performance CharacteristicsChapter 14.Hashing 14.1 Hash Functions14.2 Separate Chaining14.3 Linear Probing14.4 Double Hashing14.5 Dynadric Hash Tables 14.6 Perspective Chapter 15.Radit Search 15.1 Digital Search Trees 15.2 Tries 15.3 Patricia Tries 15.4 Multiway Tries and TSTs 15.5 Text String Index ApplicationsChapter 16.External Searching 16.1 Rules of the Game16.2 Indexed Sequential Access16.3 B Trees16.4 Extendible Hashing16.5 PerspectiveIndex

媒体关注与评论

书评本套教学用书的特点:    权威性——教育部高等教育司推荐、教育部高等学校信息科学与技术引进教材专家组遴选。    系统性——覆盖计算机专业主干课程和非计算机专业计算机基础课程。    先进性——著名计算机专家近两年的最新著作,内容体系先进。    经济性——价格与国内自编教材相当、是国内引进教材价格最低的。

图书封面

图书标签Tags

评论、评分、阅读与下载


    算法Ⅰ~Ⅳ(C++实现):基础、数据结构、排序和搜索 PDF格式下载


用户评论 (总计1条)

 
 

  •   拉莫泽在游戏编程里提到的一套数据结构和算法书,很好!
 

250万本中文图书简介、评论、评分,PDF格式免费下载。 第一图书网 手机版

京ICP备13047387号-7