******** fig3.6 ********** typedef struct node *node_ptr; struct node { element_type element; node_ptr next; }; typedef node_ptr LIST; typedef node_ptr position;