|
|
#2
geiwofanyira2010-11-21 18:42
|
int depth(bitree)
{
if(!bt) return 0;
else
{
h1=depth(bt->lchild); h2=depth(->rchild);
if(h1>h2) return h1+1;
else return h2+1;
}
}
请问 算法里面 h1和h2 是怎样计数的?
不会