home *** CD-ROM | disk | FTP | other *** search
- /*Program 4_2d - Sort IRS data
- by Stephen R. Davis, 1987
-
- Define an insert() and remove() functions using a circular
- implimentation to minimize the boundary conditions
- */
-
- #include <stdio.h>
- #include <alloc.h>
-
- #define NULL (struct IRSdata *)0
-
- /*prototype definitions*/
- int insert (struct IRSdata *, struct IRSdata *, struct IRSdata *);
- int remove (struct IRSdata *);
- void init (void);
- void printit (void);
- struct IRSdata *findit (unsigned);
-
- /*structure definition of IRS data*/
- struct IRSdata{
- struct IRSdata *previous,*next;
- 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;
-
-
- /*Insert - insert a structure in between two doubly linked entries.
- Return a 0 if successful, and a nonzero if not*/
- int insert (before, after, current)
- struct IRSdata *before, *after, *current;
- {
- if (before -> next != after) return -1;
- if (before != after -> previous) return -1;
-
- before -> next = current;
- current -> previous = before;
-
- after -> previous = current;
- current -> next = after;
- return 0;
- }
-
- /*Remove - remove an entry from a doubly linked list*/
- int remove (entry)
- struct IRSdata *entry;
- {
- struct IRSdata *before, *after;
-
- before = entry -> previous;
- after = entry -> next;
-
- before -> next = after;
- after -> previous = before;
-
- entry -> previous = entry -> next = NULL;
- return 0;
- }
-
- /*Init - initialize the linked list to empty*/
- void init (void)
- {
- MARKER = (struct IRSdata *)malloc (sizeof (struct IRSdata));
- MARKER -> previous = MARKER -> next = MARKER;
- }
-
- /*test the above routines*/
-
- void printit (void)
- {
- struct IRSdata *ptr;
-
- printf ("\n\n");
- for (ptr = MARKER -> next; ptr != MARKER; ptr = ptr -> next)
- printf ("%u ", ptr -> taxrate);
- printf ("\n");
- }
-
- struct IRSdata *findit (count)
- unsigned count;
- {
- struct IRSdata *ptr;
-
- for (ptr = MARKER -> next; count; count--)
- ptr = ptr -> next;
- return ptr;
- }
-
- main()
- {
- unsigned i;
- struct IRSdata *to, *from;
-
- init ();
-
- for (i = 0; i < 10; i++) {
- to = (struct IRSdata *)malloc (sizeof (struct IRSdata));
- to -> taxrate = i;
- insert (MARKER -> previous, MARKER, to);
- }
-
- printf ("Enter entry to remove followed by"
- "where to insert it\n"
- "(Control-C to terminate");
- for (;;) {
- printit ();
- printf ("Input entry to remove:");
- scanf ("%u", &i);
- from = findit (i);
- remove (from);
-
- printit ();
- printf ("Now where should I put it:");
- scanf ("%u", &i);
- to = findit (i);
- insert (to, to -> next, from);
- }
- }