Design recipe for Scheme programs, version 2
(or programming in most other languages, for that matter!)
Are you creating a new function or a new data type?
Functions are analogous to verbs in human languages: they represent
actions that happen at a particular time.
For example, the built-in +
function takes in two or more numbers, adds them up, and returns the
resulting number; the (user-defined) cube
function takes in
one number, computes its third power, and returns that. Functions
generally accept parameters when they are called and return results.
Data types are more like improper nouns in human languages: they represent
a kind of thing. In English, "computer", "student", "dog",
"banana", and "program" are kinds of things. In most computer programming
languages, there are built-in types like "number", "boolean", "symbol",
and "string", while you can define others like "circle", "rectangle",
"shape", etc. A data type is not "called" or "invoked" at any particular
time on any particular parameters, and it doesn't return a result.
Many programming tasks require inventing both a new data type and
a new function (or even several of each). Just deal with them one at a
time.
Creating a function | Creating a data type |
Analysis & Design
-
Understand the assignment informally
- Write a function contract,
specifying what kind of information goes in and what kind comes out.
Note that some of this information may be of new data types, in which case
you'll also need to create a data type.
- Write examples of how your
function will be used, with correct answers
Coding
- Write the function's Skeleton
- Choose and use an appropriate Template
- Fill in the Function Body
Testing & Debugging
- Test your program to see whether it works
correctly on all your test cases.
|
Describe the new data type in English. At this point, most of the new
data type definitions you've seen are "by parts": an object of the new type
"contains one of these, and one of those,
and one of the others.
For example, a posn consists of two
numbers, the x coordinate and the y coordinate, and every
posn must have both.
We'll see another way to define data types, "by choices", shortly.
- Identify the parts,
specifying the name and type of each one.
- Write a
define-struct , using
Syntax Rule 5.
- Write function
contracts
for the functions that
define-struct gives you.
- Write examples of your
new data type. (Note that unlike the "examples of function calls",
there are no "correct answers" attached to these, because an instance
of a data type doesn't produce an answer, it just is.)
- Write two function templates: one for
functions that take in
the new data type as a parameter, and one for
functions that return the
new data type as a result.
|
Last modified:
Mon Mar 3 11:19:12 EST 2003
Stephen Bloch / sbloch@adelphi.edu