Tom Kelliher, CS23
February 7, 1996
Aids comprehension, debugging, modification; eliminates redundancy
No ``magic numbers'' --- use named constants
Don't leave user in the dark
Always validate inputs
Invariants, pre- and post-conditions (discussed later)
Very personal subject.
Issues:
#ifdef DEBUGGING cout << "Debugging was compiled-in." << endl; #endif
Two purposes:
A contract between caller (client) and callee (server)
Pre-condition states what must be true upon function entry
Post-condition states what will be true upon exit --- describing the transformation accomplished
Example:
/**********************************************************************
sort
pre-condition: the int array data contains integer values in its first
numElems locations
post-condition: the first numElems values of data are sorted into
ascending order
**********************************************************************/
void sort(int data[], int numElems)
{
...
}
What would the pre- and post-conditions be for:
int linkedListInsert(LinkedList& l, int position, ListItem item);
Four characteristics:
Consider the code:
const int SIZE = 100; int data[SIZE]; int i; int sum; // stuff to initialize data sum = 0; for (i = 0; i < SIZE; i++) sum += data[i]; cout << "Sum: " << sum << endl;What is the invariant?
Three more examples:
fact = 1; for (i = 2; i <= n; i++) fact *= n; // careful!!
void SelectionSort(dataType A[], int N)
{
for (int Last = N-1; Last >= 1; --Last)
{
// select largest item in A[0..Last]
int L = IndexOfLargest(A, Last+1);
// swap largest item A[L] with A[Last]
Swap(A[L], A[Last]);
} // end for
} // end SelectionSort
int IndexOfLargest(const dataType A[], int Size)
{
int IndexSoFar = 0; // index of largest item found so far
for (int CurrentIndex = 1; CurrentIndex < Size;
++CurrentIndex)
{
if (A[CurrentIndex] > A[IndexSoFar])
IndexSoFar = CurrentIndex;
} // end for
return IndexSoFar; // index of largest item
} // end IndexOfLargest
Determine pre- and post- conditions and loop invariants for the following: