1. 首页
  2. 编程语言
  3. C
  4. 二叉树头文件包含创建和遍历输出

二叉树头文件包含创建和遍历输出

上传者: 2019-01-20 14:49:32上传 H文件 1.18KB 热度 33次
二叉树的创建和遍历输出typedef char datatype; typedef struct node{ datatype data; struct node *lchild,*rchild; }binnode; typedef binnode *bintree; bintree root; void creatbintree(bintree *p) { char ch; if((ch=getchar())==' ') *p=NULL; else { *p=(binnode *)malloc(sizeof(binnode)); (*p)->d
用户评论