听众
收听
2018-04-28
int Xdepth(BiTNode *t,char x)// 查找某元素x在树中的层数 { int num1,num2,n; if(t==NULL) return 0; else{ if(t->data==x) return 1; num1=Xdepth(t->lchild,x); num2=Xdepth(t->rch
未知领域 来自火星
https://www.optbbs.com/?49978
这家伙很懒,什么都没有留
...
更多>
留言