int LEVELH(BiTree T,int h){
if(T==NULL||h<1){
return 0;
}
LEVELH(T→lchild,h-1);
if(h==1){
visit(T);
return 1;
LEVELH(T→rchild,h-1);
}
小白发问,这个算法有错吗?