以先序为例,遍历二叉树,a(Linklist L,int count){ if(L!=NULL){ if(L->data==x){print count; } a(L->lchild,count+1); a(L->rchild,count+1); }}程序简单了些,大概就是这个意思