home *** CD-ROM | disk | FTP | other *** search
- /*Program 4_2f - Sort IRS data
- by Stephen R. Davis, 1987
-
- Define the 'swap()', 'compare()' and 'sequence()' routines
- required by our previously defined "perfectly general
- bubble sort". These routines will allow us to use our bubble
- sort to sort the IRS data by social security number.
- Use the previously defined 'insert()' and 'remove()' to
- impliment the new 'swap()'.
- */
-
- #include <stdio.h>
-
- #define NULL (struct IRSdata *)0
- #define signature 0x1234
-
- /*prototype definitions*/
- int swap (struct IRSdata *, struct IRSdata *);
- int compare (struct IRSdata *, struct IRSdata *);
- struct IRSdata *sequence (struct IRSdata *);
-
- /*structure declaration for IRS data*/
- struct IRSdata{
- struct IRSdata *previous,*next;
- unsigned fingerprint;
- char lastname [11];
- char firstname [11];
- char sex;
- struct {
- char street [16];
- char city [11];
- char state [3];
- } address;
- char ssnum [10];
- int taxrate;
- };
- struct IRSdata *MARKER;
-
-
- /*Swap - swap the position of the two entries passed. Return
- a 0 if successful and a -1 if not.*/
- int swap (first, second)
- struct IRSdata *first, *second;
- {
-
- if (remove (second))
- return -1;
- return (insert (first -> previous, first, second));
- }
-
- /*Compare - compare two IRS data structures. Return as follows:
- 1 -> a.taxrate > b.taxrate
- 0 -> a.taxrate = b.taxrate
- -1 -> a.taxrate < b.taxrate*/
- int compare (a, b)
- struct IRSdata *a, *b;
- {
- if (a -> taxrate > b -> taxrate)
- return 1;
- if (a -> taxrate < b -> taxrate)
- return -1;
- return 0;
- }
-
- /*Sequence - given an entry, return the address of the next
- entry*/
- struct IRSdata *sequence (entry)
- struct IRSdata *entry;
- {
- struct IRSdata *value;
-
- if (entry == 0) /*given a 0...*/
- entry = MARKER; /*...start at beginning*/
-
- if (check (entry, "arg 'entry' to sequence()"))
- return NULL;
-
- if ((value = entry -> next) == MARKER) /*if end of chain...*/
- return NULL; /*...return a NULL*/
- else
- return value;
- }