1. 首页
  2. 课程学习
  3. C++/C
  4. BTree资源下载

BTree资源下载

上传者: 2019-05-19 23:26:42上传 CPP文件 1.12KB 热度 30次
#include"malloc.h"#include"iostream.h"#definenull0typedefstructBTreeNode{chardata;structBTreeNode*lchild,*rchild;}BTNode;BTNode*createtree(){BTNode*BT;charch;cin>>ch;if(ch!='#'){BT=(BTNode*)malloc(sizeof(BTNode));BT->data=ch;BT->lchild=
用户评论