摘要: include include typedef struct node{ char data; struct node lchild, rchild; }bitnode; //二叉树的构建 void createbintree(bitnode &b,char a[],int &n){ char c= 阅读全文
posted @ 2019-05-28 12:01 龙吕 阅读(203) 评论(0) 推荐(0) 编辑