其他分享
首页 > 其他分享> > 第一周学习日志

第一周学习日志

作者:互联网

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);
}
}
//先序遍历

标签:node,struct,第一周,学习,rch,日志,root,bit,xxbl
来源: https://www.cnblogs.com/81dby/p/12811592.html