文件名称:数据结构二叉树的源代码
文件大小:2KB
文件格式:TXT
更新时间:2013-06-11 02:15:46
二叉树
#define maxsize 100 typedef int datatype; typedef struct node { datatype data; struct node *lchild, *rchild; }bitree; bitree *q[maxsize]; bitree *creatree() { char ch; int front,rear; bitree *s,*root; root=NULL; front=1; rear=0;