Features
About the Book
New and revised features keep the text clear and up-to-date
- UPDATED! C++ code has been updated to follow professional conventions, including:
- Exceptions are used rather than return values to signal unusual situations.
- Safe and secure coding techniques are used, such as those found in SEI CERT Coding Standards.
- C++11 and C++14 features are used where applicable.
- REVISED! Revised figures improve overall clarity.
- NEW! Technologically dated examples have been replaced with newer examples.
- NEW! Notes and Programming Tips have been added throughout the text.
- NEW! Programming problems in the areas of gaming, finance, and e-commerce have been added.
- NEW! Security Notes represent a new element in the text.
- NEW! A new C++ Interlude, "Safe Memory Management Using Smart Pointers,” introduces smart pointers, a C++11 feature. Chapters subsequent to this interlude use smart pointers.
- UPDATED! Multicultural names are used when naming people in examples.
Provides a strong introduction to data abstraction
- The distinction between specification and implementation is emphasised.
- Extensive coverage of object-oriented programming techniques is featured.
- Core data structures are featured, rather than non-essential C++ language syntax.
- The role of classes and ADTs in the problem-solving process is illustrated.
- Linked data coverage is made accessible through progressive discussion as the text introduces the ADTs bag, stack, and list.
- “Walls and mirrors” represent problem-solving techniques related to data abstraction (walls) and recursion (mirrors), explored throughout the text.
-
C++ Interludes cover relevant C++ topics as needed between chapters.
-
Major applications of ADTs, such as searching a flight map, event-driven simulation, and the eight queens problem are featured
-
Use of the Standard Template Library (STL) with examples is included in most chapters.
-
An appendix, "Basic C++ Syntax,” is included for students who are making the transition from another language, such as Java or Python.
- Copyright 2017
- Dimensions: 8" x 10"
- Pages: 864
- Edition: 7th
-
Book
- ISBN-10: 0-13-446397-8
- ISBN-13: 978-0-13-446397-1
For courses in C++ Data Structures
Concepts of Data Abstraction and Manipulation for C++ Programmers
The Seventh Edition of Data Abstraction & Problem Solving with C++: Walls and Mirrors introduces fundamental computer science concepts related to the study of data structures. The text Explores problem solving and the efficient access and manipulation of data and is intended for readers who already have a basic understanding of C++.
The “walls and mirrors” mentioned in the title represent problem-solving techniques that appear throughout the text. Data abstraction hides the details of a module from the rest of the program, whereas recursion is a repetitive technique that solves a problem by solving smaller versions of the same problems, much as images in facing mirrors grow smaller with each reflection. Along with general changes to improve clarity and correctness, this Seventh Edition includes new notes, programming tips, and sample problems.
Table of Contents
Brief Contents
- Data Abstraction: The Walls
- Recursion: The Mirrors
- Array-Based Implementations
- Link-Based Implementations
- Recursion as a Problem-Solving Technique
- Stacks
- Stack Implementations
- Lists
- List Implementations
- Algorithm Efficiency
- Sorting Algorithms and Their Efficiency
- Sorted Lists and Their Implementations
- Queues and Priority Queues
- Queue Implementations
- Trees
- Tree Implementations
- Heaps
- Dictionaries and Their Implementations
- Balanced Search Trees
- Graphs
- Processing Data in External Storage