1 [Lời giải]Tính chiều cao cây nhị phân Sat Jun 18, 2011 3:37 pm
sangminh
Thành viên bắt đầu chia sẻ
1.Hàm tính chiều cao của cây nhị phân T.
int ChieuCao(TREE T)
{
if(!t)
return 0;
int a = ChieuCao(T->pLeft);//con trỏ bên trái//
int b = ChieuCao(T->pRight);//con trỏ bên phải//
if(a>b)
return (a+1);
return (b+1);
}
int ChieuCao(TREE T)
{
if(!t)
return 0;
int a = ChieuCao(T->pLeft);//con trỏ bên trái//
int b = ChieuCao(T->pRight);//con trỏ bên phải//
if(a>b)
return (a+1);
return (b+1);
}