Skip to content

C++ Plus Data Structures

Best in textbook rentals since 2012!

ISBN-10: 0763741582

ISBN-13: 9780763741587

Edition: 4th 2007 (Revised)

Authors: Nell B. Dale

List price: $162.95
Blue ribbon 30 day, 100% satisfaction guarantee!
what's this?
Rush Rewards U
Members Receive:
Carrot Coin icon
XP icon
You have reached 400 XP and carrot coins. That is the daily max!

Description:

C++ Plus Data Structures, Fourth Edition assumes that students are familiar with the following C++ constructs; built-in simple data types, stream I/O as provided in , stream I/O as provided in , control structures while, do-while, for, if, and switch, user-defined functions with value and reference parameters, and built-in array types. CS2/C102 with C++ Data Structures with C++
Customers also bought

Book details

List price: $162.95
Edition: 4th
Copyright year: 2007
Publisher: Jones & Bartlett Learning, LLC
Publication date: 11/10/2006
Binding: Paperback
Pages: 781
Size: 8.25" wide x 9.50" long x 1.00" tall
Weight: 3.080
Language: English

Subject to Change
Preface
Software Engineering Principles
Software Design Process
Verification of Software Correctness Summary Exercises
Data Design and Implementation
Different Views of Data
Abstraction and Built-in Types
Higher-Level Abstraction and the C++ Class Type
C++ Constructs for Program Verification Case Study: User-Defined String I/O Class Summary Exercises
ADT's Unordered List and Sorted Lists
Lists
Abstract Data Type Unsorted List
Abstract Data Type Sorted List
Comparison of Algorithms
Comparison of Unsorted and Sorted List ADT Algorithms
Class Constructors, Class Destructors, and Overloading Operators Case Study: Real Estate Listings, and Object-Oriented Design
Summary
Exercises
ADT's Stack and Queue
Stacks
More about Generics: C++ Templates
Pointer Types
Dynamically Allocated Arrays Case Study: Postfix Expression Evaluation
Queues
Case Study: Simulation
Summary
Exercises
Linked Structures
Implementing a Stack as a Linked Structure
Implementing a Queue as a Linked Structure
Implementing the Unsorted List as a Linked Structure
Implementing the Sorted List as a Linked Structure
Summary
Exercises
Lists Plus
Circular Linked Lists
Doubly Linked Lists
Linked Lists with Headers and Trailers
Copy Structures
A Specialized List ADT
A Linked List as an Array of Records
Object-Oriented Design: Composition and Inheritance
Case Study: Implementing a Large Integer ADT
Summary
Exercises
Programming with