******** fig3.41 ********** typedef struct node *node_ptr; struct node { element_type element; node_ptr next; }; typedef node_ptr STACK; /* Stack implementation will use a header */