******** fig3.25 ********** typedef struct node *node_ptr; struct node { int coefficient; int exponent; node_ptr next; }; typedef node_ptr POLYNOMIAL; /* keep nodes sorted by exponent */