第一周学习日志

  • 学习日志

typedef struct node
{telemtype data ;
struct node lch,rch;
}bin,*bit;
//二叉链表定义

void xxbl(bit root)
{if(root==NULL)
return ;
else
{ visit(root->data);
xxbl(root->lch);
xxbl(root->rch);
}
}
//先序遍历

posted @ 2020-04-30 22:45  八一丶  阅读(123)  评论(0)    收藏  举报