1234
int height( node* root ){ if( ! root ) return 0; else return max( height(root->left), height(root->right) ) +1; }