******** fig4.20 ********** tree_ptr find_max( SEARCH_TREE T ) { if( T != NULL ) while( T->right != NULL ) T = T->right; return T; }