数据结构(C++语言描述)

数据结构(C++语言描述)
分享
扫描下方二维码分享到微信
打开微信,点击右上角”+“,
使用”扫一扫“即可将网页分享到朋友圈。
作者: [美] ,
1997-03
ISBN: 9787302024132
定价: 54.00
装帧: 平装
开本: 其他
纸张: 其他
分类: 自然科学
58人买过
  • 内容简介
    本书从面向对象的视角介绍数据结构。内容从数据结构的基本原
    理到面向对象程序设计的方法。书内使用适应面极广的C++语言。全
    书14章分别为:1绪论;2基本数据类型;3抽象数据类型与类;4.
    集合类;5栈与队列;6.抽象运算符;7.类属数据类型;8.类与动态
    存储;9链表;10递归;11树;12继承与抽象类;13先进的非线
    性结构;14构建集合。书后附有练习答案。
    Preface xvll
    CHAPTER 1 INTRODUCTION
    1.1 Abstract Data Types
    ADT Format
    1.2 C++ Classes and Abstract Types
    Encapsulatlon and Information Hidlng
    Message Passing
    1.3 Objecls in C++ Appllcatlons
    Applicatlon: The Circle Class
    1.4 Oblect Design
    Objects and Composltion
    C++ Geometric Classes
    Objects and Inherltance
    Inheritance In Frogrammlng
    Ordered Llsts and Inheritance
    Software Reusability
    SeqLlst and OrderedLlsl Class Speclfications
    1.5 Applicatlons with Class Inherltance
    1.6 Object-Oriented Program Design
    Problem Analysis/Program Definition
    Deslgn
    Coding
    Tesllng
    Program Deslgn Illustratlon: A Dlce Graph
    1.7 Program Testlng and Malnlenance
    Object Testlng
    Contrul Module Testing
    Program Malntenance and Documentation
    1.8 The C++ Programming Language
    1.9 Abstract Base Classes and Polymorphism
    Polymorphlsm and Dynamic Binding
    Written Exerclses
    CHAPTER2 BASIC DATA TYMS
    2.1 IntegerTypes
    Computer Storage of Integers
    Data In Memory
    C++ Representatlon of Integers
    2.2 Character Types
    ASCIl Characlers
    2.3 Real Data Types
    Real Number Representatlons
    2.4 Enumerated Types
    Implementing C++ Enumerated Types
    2.5 Pointers
    Pointer ADT
    l'olnter Values
    2.6 The Array Type
    the Buill-In C++ Array Type
    Sloragc of One-Dimcnslonal Arrays
    Array Bounds
    Two-Dlmensional Arrays
    Storage of Two-Dimenslonal Arrays
    2.7 String Literals and Variables
    C++ Strings
    Appllcallon: Reverslng Names
    2.8 Records
    C++ Structures
    2.9 Files
    C++ Stream Hlerarchy
    2.10 Array and Record Appllcations
    Sequentlal Seareh
    Exchange Sort
    Counting C++ Reserved Words
    Wrltten Exercises
    ProgrammlIlg Exerclses
    CHAPTER 3 ABSTRACT DATA TYPES AND CLASSES
    3.1 The User Type CLASS
    Class Declaration
    Constructor
    Object Declarallon
    Class Implementatlon
    Implementing a Constructor
    Bulldlng Objects
    3.2 Sample Classes
    The Temperature Class
    The Random Number Class
    3.3 Oblects and Information Passlng
    An Object as a Return Value
    An Object as a Function Parameter
    3.4 Arrays of Objects
    The Default Conslructor
    3.5 Multlple Constructors
    3.6 Case Study: Triangular Matrices
    llpper Triangular Matrlx Properties
    Written Exerclses
    Programming Exereises
    CHAPTER 4 COLLECTION CLASSES
    4.1 Describing Llnear Collectlons
    Dlrecl Access Collections
    Sequentlal Access Collectlons
    Generalized Indexing
    4.2 Describing Nonlinear Collectlons
    Group Collectlons
    4.3 Analysls of Algorllhms
    Performance Crlteria
    Common Orders of Magnltude
    4.4 The Sequential and Blnary Search
    Blnary Search
    4.5 The Baslc Sequentlal List Class
    List Modincatlon Melhods
    Wrlllen Exerclses
    Programming Exerclses
    CHAPTER 5 STACKS AND QUEUES
    5.1 Stacks
    5.2 The Stack Class
    5.3 Expression Evaluation
    Postfix Evaluation
    Appllcatlon: A Posttlx Calculator
    5.4 Queues
    5.5 The Oueue Class
    5.6 Prlorlty Queues
    A Prlorlty Queue Class
    5.7 Case Study: Event-Drlven Slmulalion
    Wrltten Exerclses
    Programmlng Exerclses
    CHAPTER 6 ABSTRACT OPERATORS
    6.1 Describlng Operator Overloading
    Client-Defined External Functlons
    Class Members
    Frlend Functlons
    6.2 Rational Number System
    Representlng Ratlonal Numbers
    Ratlonal Number Arithtnetlc
    Ralional Number Converslon
    6.3 The Ratlonal Class
    6.4 Ratlonal Operators as Member Funclions
    Implemenllng the Ratlonal Operators
    6.5 The Ratlonal Stream Operators as Friends
    Implementlng Ratlonal Stream Operators
    6.6 Converting Rational Numbers
    Conversion to Object Type
    Converslon from Object Type
    6.7 Using Ratlonal Numbers
    Wrltten Exerclses
    Programmlng Exerclses
    CHAPTER 7 OENERIC DATA TYPES
    7.1 Template Functlons
    Template-Based Sort
    7.2 Template Classes
    Deflning a Template Class
    Declaring Template Class Oblects
    Defining Tcmplate Class Methods
    7.3 Template Llst Classes
    7.4 Infix Expression Evaluatlon
    Wrltten Exerclses
    Programming Exercises
    CHAPTER 8 CLASSES AND DYNAMIC MEMORY
    8.1 Pointers and Dynamic Data Structures
    The Memory Allocation Operator New
    Dynamlc Array Allocatlon
    The Memory Deallocatlon Operator Delete
    8.2 Dynamlcally Allocated Oblecte
    Deallocatlng Object Data: The Destructor
    8.3 Asslgnment and Inltlaltzatlon
    Asslgnment Issues
    Overloadlng the Assignment Operator
    The Thls Polnter
    Inltlallzatlon Issues
    Creating a Copy Constructor
    8.4 Safe Arrays
    The Array Class
    Memory Allocatlon for the Array Class
    Array Bounds Checklng and the Overloaded 1] Operator
    Convertlng an Object to a Polnter
    Using the Array Class
    8.5 A Strlng Class
    String Class Implemenlation
    8.6 Pattern Matehlng
    The Flnd Process
    Pattern Matchlng Algorlthm
    Analysls of the Pattern Matchlng Algorlthm
    8.7 Integral Sets
    Sets of Integral Types
    C++ Blt Handllng Operators
    Representlng Set Elements
    The Sleve of Eratosthenes
    Set Class Implementatlon
    Wrltten Exereises
    Programmlng Exerclses
    CHAPTER9 LINKIDLISTS
    Descrlbing a Llnked Llst
    Chapter 9 Overvlew
    9.1 The Node Class
    Declarlng a Node Type
    Implementlng the Node Class
    9.2 Bulldlng Llnked Llsts
    Creating a Node
    Insertlng a Node: InsertFront
    Traversing a Llnked Llst
    Insertlng a Node: InsertRear
    Appllcatlon: Student Graduatlon Llst
    Creatlng an Ordered Llst
    Appllcation: Sortlng wlth Llnked Llsts
    9.3 Deslgnlng a Llnked List Class
    Llnked Llst Data Members
    Llnked List Operatlons
    9.4 The LlnkedLlst Class
    9.5 Implementlng the LinkedList Class
    9.6 Implementlng Collectlons wlth Llnked Lists
    Llnked Queues
    Implementlng Queue Methods
    Llnked SeqLlst Class
    Implementlng SeqLlst Data Access Methods
    Appllcation: Comparlng SeqLlst Implementations
    9.7 Case Study: A Prlnt Spooler
    Implementing the Spooler Update Method
    Spooler Evaluation Methods
    9.8 Clreular Llsts
    Clrcular Node Class Implementation
    Appllcatlon: Solvlng the Josephus Problem
    9.9 Doubly Llnked Lista
    Appllcation: Doubly Linked List Sort
    DNode Class Implementation
    9.10 Case Study: Wlndow Management
    The Wlndow Llst
    WindowList Class Implementatlon
    Writlen Exerclses
    Programmlng Exercises
    CHAPTCR 10 RECURSION
    10.1 The Concept of Recurslon
    Recurslve Deflnltions
    Recursive Problems
    10.2 Deslgnlng Recurslve Functlons
    10.3 Recursive Code and the Runtlme Stack
    The Runtlme Stack
    10.4 Problem-Solvlng wlth Recurslon
    Blnary Search
    Combinatorics: The Commlttee Problem
    Combinalorlcs: Permutations
    Maze Handllng
    Maze Class Implementatlon
    10.5 Evaluatlng Recurslon
    Wrlllen Exerclses
    Programmlng Exerclses
    CHAPTER 11 TREES
    Tree Termlnology
    Binary Trees
    11.1 Binary Tree Structure
    Deslgning a TreeNode Class
    Bulldlng a Blnary Tree
    11.2 Deslgnlng TreeNode Funclions
    Recursive Tree Traversals
    11.3 Uslng Tree Scan Algorlthms
    Application: Vlsitlng Tree Nodes
    Appllcation: Tree Prlnt
    Appllcation: Copyfng and Delellng Trees
    Applicatlon: Upright Tree Prlnting
    11.4 Blnary Search Trees
    The Key in a Blnary Search Tree Node
    Operatlons on a Blnary Search Tree
    Declaring a Blnary Search Tree ADT
    11.5 LIsing Binary Search Trees
    Duplicate Nodes
    11.6 The BlnSTree Implementation
    List Operations
    11.7 Case Study: Concordance
    Written Exercises
    Programming Exercises
    CHAPTER 12 INHERITANCE AND ABSTRACT CLASSES
    12.1 A Vlew of Inheritance
    Class Inherltance Termlnology
    12.2 Inheritance In C++
    Constructors and Derived Classes
    What Cannot Be Inherited
    12.3 Polymorphism and Vlrtual Functlons
    Demonstratlng Polymorphlsm
    Appllcation: Geometrlc Figures and Virtual Methods
    Virtual Melhods and the Destructor
    12.4 Abstract Base Classes
    Abstract Base Class-List
    Derlvlng SeqLlst from Abstract Base Class List
    12.5 Iterators
    The Iterator Abstract Base Class
    Derlving Llst Iterators
    Building the SeqLlst Iterator
    Array Iterator
    Applicatlon: Merglng Sorted Runs
    Arraylterator Implementatlon
    12.6 Ordered Llsts
    OrderedLlst Class Implementatlon
    12.7 Heterogeneous Llsts
    Heterogeneous Arrays
    Heterogeneous Linked Lists
    Wrltten Exercises
    Programmlng Exerelses
    CHAPTER 13 ADVANCED NONLINEAR STRUCTURES
    13.1 Array-Based Binary Trees
    Appllcation: The Tournament Sort
    13.2 Heaps
    The Heap as a List
    The Heap Class
    13.3 Implementlng the Heap Class
    Appllcatlon: Heap Sort
    13.4 Priorlty Queues
    Appllcation: Long Runs
    13.5 AVLTrees
    AVL Tree Nodes
    13.6 The AVL Tree Class
    Memory Allocation for the AVLTree
    Evaluatlng AVL Trees
    13.7 Trce Iterators
    The Inorder Iterator
    Inorderlteralor Class Implementatlon
    Appllcation: TreeSort
    13.8 Graphs
    Connected Components
    13.9 The Graph Class
    Declaring a Graph ADT
    Graph Class Implementatlon
    Graph Traversals
    Appllcatlons
    Reachabillty and Warshall's Algorlthm
    Writlen Exercises
    Programmlng Exercises
    CHAPTER 14 ORGANIZING COLLECTIONS
    14.1 Baslc Array Sortlng Algorithms
    The Selection Sort
    The Bubble Sorl
    The Insertion Sort
    14.2 OuickSort
    OulckSort Descrlption
    OuickSort Algorithm
    Comparison of Array Sort Algorithms
    14.3 Hashing
    Keys and a Hash Function
    Hashing Functions
    Other Hash Methods
    Colllslon Resolutlon
    14.4 Hash Table Class
    Appllcation: Strlng Frequency
    HashTable Class Implementation
    HashTableIterator Class Implementation
    14.5 The Performance of Searching Methods
    14.6 Blnary Flles and External Data Operatlons
    Binary Flles
    The BlnFlle Class
    External Flle Searching
    External Flle Sort
    Long Run MergeSort
    14.7 Dictionarles
    Writlen Exerclses
    Programming Exercises
    APPENDIX ANSWERS TO SELECTED EXERCISES
    BIBLIOGRAPHY
  • 内容简介:
    内容简介
    本书从面向对象的视角介绍数据结构。内容从数据结构的基本原
    理到面向对象程序设计的方法。书内使用适应面极广的C++语言。全
    书14章分别为:1绪论;2基本数据类型;3抽象数据类型与类;4.
    集合类;5栈与队列;6.抽象运算符;7.类属数据类型;8.类与动态
    存储;9链表;10递归;11树;12继承与抽象类;13先进的非线
    性结构;14构建集合。书后附有练习答案。
  • 目录:
    Preface xvll
    CHAPTER 1 INTRODUCTION
    1.1 Abstract Data Types
    ADT Format
    1.2 C++ Classes and Abstract Types
    Encapsulatlon and Information Hidlng
    Message Passing
    1.3 Objecls in C++ Appllcatlons
    Applicatlon: The Circle Class
    1.4 Oblect Design
    Objects and Composltion
    C++ Geometric Classes
    Objects and Inherltance
    Inheritance In Frogrammlng
    Ordered Llsts and Inheritance
    Software Reusability
    SeqLlst and OrderedLlsl Class Speclfications
    1.5 Applicatlons with Class Inherltance
    1.6 Object-Oriented Program Design
    Problem Analysis/Program Definition
    Deslgn
    Coding
    Tesllng
    Program Deslgn Illustratlon: A Dlce Graph
    1.7 Program Testlng and Malnlenance
    Object Testlng
    Contrul Module Testing
    Program Malntenance and Documentation
    1.8 The C++ Programming Language
    1.9 Abstract Base Classes and Polymorphism
    Polymorphlsm and Dynamic Binding
    Written Exerclses
    CHAPTER2 BASIC DATA TYMS
    2.1 IntegerTypes
    Computer Storage of Integers
    Data In Memory
    C++ Representatlon of Integers
    2.2 Character Types
    ASCIl Characlers
    2.3 Real Data Types
    Real Number Representatlons
    2.4 Enumerated Types
    Implementing C++ Enumerated Types
    2.5 Pointers
    Pointer ADT
    l'olnter Values
    2.6 The Array Type
    the Buill-In C++ Array Type
    Sloragc of One-Dimcnslonal Arrays
    Array Bounds
    Two-Dlmensional Arrays
    Storage of Two-Dimenslonal Arrays
    2.7 String Literals and Variables
    C++ Strings
    Appllcallon: Reverslng Names
    2.8 Records
    C++ Structures
    2.9 Files
    C++ Stream Hlerarchy
    2.10 Array and Record Appllcations
    Sequentlal Seareh
    Exchange Sort
    Counting C++ Reserved Words
    Wrltten Exercises
    ProgrammlIlg Exerclses
    CHAPTER 3 ABSTRACT DATA TYPES AND CLASSES
    3.1 The User Type CLASS
    Class Declaration
    Constructor
    Object Declarallon
    Class Implementatlon
    Implementing a Constructor
    Bulldlng Objects
    3.2 Sample Classes
    The Temperature Class
    The Random Number Class
    3.3 Oblects and Information Passlng
    An Object as a Return Value
    An Object as a Function Parameter
    3.4 Arrays of Objects
    The Default Conslructor
    3.5 Multlple Constructors
    3.6 Case Study: Triangular Matrices
    llpper Triangular Matrlx Properties
    Written Exerclses
    Programming Exereises
    CHAPTER 4 COLLECTION CLASSES
    4.1 Describing Llnear Collectlons
    Dlrecl Access Collections
    Sequentlal Access Collectlons
    Generalized Indexing
    4.2 Describing Nonlinear Collectlons
    Group Collectlons
    4.3 Analysls of Algorllhms
    Performance Crlteria
    Common Orders of Magnltude
    4.4 The Sequential and Blnary Search
    Blnary Search
    4.5 The Baslc Sequentlal List Class
    List Modincatlon Melhods
    Wrlllen Exerclses
    Programming Exerclses
    CHAPTER 5 STACKS AND QUEUES
    5.1 Stacks
    5.2 The Stack Class
    5.3 Expression Evaluation
    Postfix Evaluation
    Appllcatlon: A Posttlx Calculator
    5.4 Queues
    5.5 The Oueue Class
    5.6 Prlorlty Queues
    A Prlorlty Queue Class
    5.7 Case Study: Event-Drlven Slmulalion
    Wrltten Exerclses
    Programmlng Exerclses
    CHAPTER 6 ABSTRACT OPERATORS
    6.1 Describlng Operator Overloading
    Client-Defined External Functlons
    Class Members
    Frlend Functlons
    6.2 Rational Number System
    Representlng Ratlonal Numbers
    Ratlonal Number Arithtnetlc
    Ralional Number Converslon
    6.3 The Ratlonal Class
    6.4 Ratlonal Operators as Member Funclions
    Implemenllng the Ratlonal Operators
    6.5 The Ratlonal Stream Operators as Friends
    Implementlng Ratlonal Stream Operators
    6.6 Converting Rational Numbers
    Conversion to Object Type
    Converslon from Object Type
    6.7 Using Ratlonal Numbers
    Wrltten Exerclses
    Programmlng Exerclses
    CHAPTER 7 OENERIC DATA TYPES
    7.1 Template Functlons
    Template-Based Sort
    7.2 Template Classes
    Deflning a Template Class
    Declaring Template Class Oblects
    Defining Tcmplate Class Methods
    7.3 Template Llst Classes
    7.4 Infix Expression Evaluatlon
    Wrltten Exerclses
    Programming Exercises
    CHAPTER 8 CLASSES AND DYNAMIC MEMORY
    8.1 Pointers and Dynamic Data Structures
    The Memory Allocation Operator New
    Dynamlc Array Allocatlon
    The Memory Deallocatlon Operator Delete
    8.2 Dynamlcally Allocated Oblecte
    Deallocatlng Object Data: The Destructor
    8.3 Asslgnment and Inltlaltzatlon
    Asslgnment Issues
    Overloadlng the Assignment Operator
    The Thls Polnter
    Inltlallzatlon Issues
    Creating a Copy Constructor
    8.4 Safe Arrays
    The Array Class
    Memory Allocatlon for the Array Class
    Array Bounds Checklng and the Overloaded 1] Operator
    Convertlng an Object to a Polnter
    Using the Array Class
    8.5 A Strlng Class
    String Class Implemenlation
    8.6 Pattern Matehlng
    The Flnd Process
    Pattern Matchlng Algorlthm
    Analysls of the Pattern Matchlng Algorlthm
    8.7 Integral Sets
    Sets of Integral Types
    C++ Blt Handllng Operators
    Representlng Set Elements
    The Sleve of Eratosthenes
    Set Class Implementatlon
    Wrltten Exereises
    Programmlng Exerclses
    CHAPTER9 LINKIDLISTS
    Descrlbing a Llnked Llst
    Chapter 9 Overvlew
    9.1 The Node Class
    Declarlng a Node Type
    Implementlng the Node Class
    9.2 Bulldlng Llnked Llsts
    Creating a Node
    Insertlng a Node: InsertFront
    Traversing a Llnked Llst
    Insertlng a Node: InsertRear
    Appllcatlon: Student Graduatlon Llst
    Creatlng an Ordered Llst
    Appllcation: Sortlng wlth Llnked Llsts
    9.3 Deslgnlng a Llnked List Class
    Llnked Llst Data Members
    Llnked List Operatlons
    9.4 The LlnkedLlst Class
    9.5 Implementlng the LinkedList Class
    9.6 Implementlng Collectlons wlth Llnked Lists
    Llnked Queues
    Implementlng Queue Methods
    Llnked SeqLlst Class
    Implementlng SeqLlst Data Access Methods
    Appllcation: Comparlng SeqLlst Implementations
    9.7 Case Study: A Prlnt Spooler
    Implementing the Spooler Update Method
    Spooler Evaluation Methods
    9.8 Clreular Llsts
    Clrcular Node Class Implementation
    Appllcatlon: Solvlng the Josephus Problem
    9.9 Doubly Llnked Lista
    Appllcation: Doubly Linked List Sort
    DNode Class Implementation
    9.10 Case Study: Wlndow Management
    The Wlndow Llst
    WindowList Class Implementatlon
    Writlen Exerclses
    Programmlng Exercises
    CHAPTCR 10 RECURSION
    10.1 The Concept of Recurslon
    Recurslve Deflnltions
    Recursive Problems
    10.2 Deslgnlng Recurslve Functlons
    10.3 Recursive Code and the Runtlme Stack
    The Runtlme Stack
    10.4 Problem-Solvlng wlth Recurslon
    Blnary Search
    Combinatorics: The Commlttee Problem
    Combinalorlcs: Permutations
    Maze Handllng
    Maze Class Implementatlon
    10.5 Evaluatlng Recurslon
    Wrlllen Exerclses
    Programmlng Exerclses
    CHAPTER 11 TREES
    Tree Termlnology
    Binary Trees
    11.1 Binary Tree Structure
    Deslgning a TreeNode Class
    Bulldlng a Blnary Tree
    11.2 Deslgnlng TreeNode Funclions
    Recursive Tree Traversals
    11.3 Uslng Tree Scan Algorlthms
    Application: Vlsitlng Tree Nodes
    Appllcation: Tree Prlnt
    Appllcation: Copyfng and Delellng Trees
    Applicatlon: Upright Tree Prlnting
    11.4 Blnary Search Trees
    The Key in a Blnary Search Tree Node
    Operatlons on a Blnary Search Tree
    Declaring a Blnary Search Tree ADT
    11.5 LIsing Binary Search Trees
    Duplicate Nodes
    11.6 The BlnSTree Implementation
    List Operations
    11.7 Case Study: Concordance
    Written Exercises
    Programming Exercises
    CHAPTER 12 INHERITANCE AND ABSTRACT CLASSES
    12.1 A Vlew of Inheritance
    Class Inherltance Termlnology
    12.2 Inheritance In C++
    Constructors and Derived Classes
    What Cannot Be Inherited
    12.3 Polymorphism and Vlrtual Functlons
    Demonstratlng Polymorphlsm
    Appllcation: Geometrlc Figures and Virtual Methods
    Virtual Melhods and the Destructor
    12.4 Abstract Base Classes
    Abstract Base Class-List
    Derlvlng SeqLlst from Abstract Base Class List
    12.5 Iterators
    The Iterator Abstract Base Class
    Derlving Llst Iterators
    Building the SeqLlst Iterator
    Array Iterator
    Applicatlon: Merglng Sorted Runs
    Arraylterator Implementatlon
    12.6 Ordered Llsts
    OrderedLlst Class Implementatlon
    12.7 Heterogeneous Llsts
    Heterogeneous Arrays
    Heterogeneous Linked Lists
    Wrltten Exercises
    Programmlng Exerelses
    CHAPTER 13 ADVANCED NONLINEAR STRUCTURES
    13.1 Array-Based Binary Trees
    Appllcation: The Tournament Sort
    13.2 Heaps
    The Heap as a List
    The Heap Class
    13.3 Implementlng the Heap Class
    Appllcatlon: Heap Sort
    13.4 Priorlty Queues
    Appllcation: Long Runs
    13.5 AVLTrees
    AVL Tree Nodes
    13.6 The AVL Tree Class
    Memory Allocation for the AVLTree
    Evaluatlng AVL Trees
    13.7 Trce Iterators
    The Inorder Iterator
    Inorderlteralor Class Implementatlon
    Appllcation: TreeSort
    13.8 Graphs
    Connected Components
    13.9 The Graph Class
    Declaring a Graph ADT
    Graph Class Implementatlon
    Graph Traversals
    Appllcatlons
    Reachabillty and Warshall's Algorlthm
    Writlen Exercises
    Programmlng Exercises
    CHAPTER 14 ORGANIZING COLLECTIONS
    14.1 Baslc Array Sortlng Algorithms
    The Selection Sort
    The Bubble Sorl
    The Insertion Sort
    14.2 OuickSort
    OulckSort Descrlption
    OuickSort Algorithm
    Comparison of Array Sort Algorithms
    14.3 Hashing
    Keys and a Hash Function
    Hashing Functions
    Other Hash Methods
    Colllslon Resolutlon
    14.4 Hash Table Class
    Appllcation: Strlng Frequency
    HashTable Class Implementation
    HashTableIterator Class Implementation
    14.5 The Performance of Searching Methods
    14.6 Blnary Flles and External Data Operatlons
    Binary Flles
    The BlnFlle Class
    External Flle Searching
    External Flle Sort
    Long Run MergeSort
    14.7 Dictionarles
    Writlen Exerclses
    Programming Exercises
    APPENDIX ANSWERS TO SELECTED EXERCISES
    BIBLIOGRAPHY
查看详情
相关图书 / 更多
数据结构(C++语言描述)
数据治理实践者手记
苏振中
数据结构(C++语言描述)
数据要素化治理
陆志鹏、孟庆国、王钺
数据结构(C++语言描述)
数据经济学(第二版)
汤珂、熊巧琴、李金璞、屈阳
数据结构(C++语言描述)
数据中台:让数据用起来 第2版 付登坡 等
付登坡 江敏 赵东辉 等
数据结构(C++语言描述)
数据资源管理 陈忆金 奉国和
陈忆金 奉国和
数据结构(C++语言描述)
数据工程之道:设计和构建健壮的数据系统 [美]乔·里斯 [美]马特·豪斯利
[美]乔·里斯(Joe Reis),[美]马特·豪斯利(Matt Housley)
数据结构(C++语言描述)
数据合规实务指引 法律实务 朱晓娟主编 新华正版
朱晓娟主编
数据结构(C++语言描述)
数据法学前沿
武长海
数据结构(C++语言描述)
数据合规与网络安全风险防范
冯洋
数据结构(C++语言描述)
数据加密与PKI应用(微课版)
王秀英
数据结构(C++语言描述)
数据库及其应用(2023年版) 全国高等教育自学考试指导委员会
全国高等教育自学考试指导委员会
数据结构(C++语言描述)
数据治理驱动的数字化转型 王建峰 辛华
王建峰 辛华
您可能感兴趣 / 更多
数据结构(C++语言描述)
一个画家的旅程(一本讲述被誉为“美国艺术创始人”的传记绘本)
[美]哈德逊·塔尔伯特
数据结构(C++语言描述)
亚拉山大的读心术(数学大师的逻辑课) 伦理学、逻辑学 [美]雷蒙德·m.斯穆里安(raymondm.smullyan)
[美]雷蒙德·m.斯穆里安(raymondm.smullyan)
数据结构(C++语言描述)
蒙特卡洛的密码锁(数学大师的逻辑课) 文教科普读物 [美]雷蒙德·m.斯穆里安(raymondm.smullyan)
[美]雷蒙德·m.斯穆里安(raymondm.smullyan)
数据结构(C++语言描述)
福尔摩斯的棋盘:关于国际象棋的推理题(数学大师的逻辑课)
[美]雷蒙德·m.斯穆里安
数据结构(C++语言描述)
你好,我是阿斯伯格女孩
[美]露迪·西蒙
数据结构(C++语言描述)
金钱游戏(划时代增订版):深层透析金融游戏表象之下的规则与黑箱 长达60年盘踞金融畅销榜的现象级作品
[美]亚当·史密斯(Adam Smith) 著;刘寅龙 译
数据结构(C++语言描述)
波西·杰克逊阿波罗的试炼系列第3册:烈焰迷宫
[美]雷克·莱尔顿 著;火皮豆 译
数据结构(C++语言描述)
托尔斯泰
[美]莉莎·克纳普(Liza Knapp)
数据结构(C++语言描述)
爱,浪漫和婚姻的99个重点
[美]江柏 德 著
数据结构(C++语言描述)
故事思维 商业管理 思维表达职场沟通人际交往
[美]安妮特·西蒙斯 后浪
数据结构(C++语言描述)
全球通史(全六册)(另一个角度的“全球通史”,不一样的视野与新知。以地理为骨,历史为肉,一部超级丰满的世界通史。)
[美]塞缪尔·古德里奇 译者:冷惠玲、冯佳娜、王小忠、孙丽霞、李江艳
数据结构(C++语言描述)
《星际争霸》动画影像艺术
[美]罗伯特·布鲁克斯