Chapter 2 Building Abstractions with Data


2.1 Introduction to Data Abstraction

Similar to procedural abstraction, data abstraction is a methodology that enables us to isolate how a compound data object is used from the details of how it is constructed from more primitive data objects.


Selectors and constructors are sets of procedures used as the interface between the construction of data and the use of data, through which programs are as if operating on “abstract data.”

A pair is a compound structure, whose behavior could be specified as

(car (cons a b)) -> a
(cdr (cons a b)) -> b

Abstraction barriers isolate different “levels” of the system. Identify for each of type of data object a set of operations, and use only those operations in manipulating data objects.

2.2 Hierarchical Data and the Closure Property

The ability to create pairs whose elements are pairs is the essence of list structure which benefits from the closure property of cons .

Closure is the key to power in any means of combination because it permits us to create hierarchical structures — structures made up of parts, which themselves are made up of parts, and so on.

The use of the word “closure” here comes from abstract algebra, where a set of elements is said to be closed under an operation if applying the operation to elements in the set produces an element that is again an element of the set.


A sequence is an ordered collection of data objects. There are many ways to represent sequences. In our language, a sequence produced by (list <a1> <a2> ... <an>) is equivalent to (cons <a1> (cons <a2> (cons ... (cons <an> nil) ...))) . Such a sequence is called a list.

Sequences serve as a conventional interface that permits us to combine processing modules (e.g. maps, filters, and accumulations).

Trees are sequences whose elements are sequences. They can be dealt naturally with recursions.

The approach of stratified design helps make programs robust, that is, it makes it likely that small changes in a specification will require correspondingly small changes in the program.

2.3 Symbolic Data

To extend the representational capability of our language, we introduce the ability to quote a data object, that is, to work with arbitrary symbols as data.


Prefix code is a way of coding such that no complete code of any symbol is the prefix of the code for another symbol. One particular scheme uses Huffman encoding tree.

2.4 Multiple Representations for Abstract Data

This section introduces a new kind of data-abstraction barriers that isolate different representations of data from each other.


Generic procedures are procedures that can operate on data that has multiple representations. We’ll need the help of type tags that specify how the data are to be processed.

As systems evolve over time, we need conventions to incorporate new modules into systems additively, that is, without having to re-implement the modules.

Two styles of organizing system with generic operations are introduced, they are:

Data-directed style. In this style, we handle generic operations by dealing explicitly with operation-and-type tables.

Message-passing style. In this style, we create data objects as dispatching procedures. Such a procedure takes as argument the name of an operation to be performed.

…………

Comments