void internal_clear( node_base* n ) { if( n != 0 ) { internal_clear( n->left ); internal_clear( n->right ); destroy( n ); } }