******** fig4.61 ********** int height( TREE T ) { if( T == NULL ) return -1; else return ( max( height(T->left), height(T->right) ) + 1 ); }