1. 首页
  2. 课程学习
  3. C++/C
  4. 西科大数据结构代码

西科大数据结构代码

上传者: 2019-08-13 21:42:17上传 TXT文件 39.32KB 热度 35次
西科大数据结构代码,后四十道题全0980输出利用先序遍历创建的二叉树的层次遍历序列#include#includeusingnamespacestd;typedefstructnode{chardata;structnode*lchild;structnode*rchild;}BiTree;voidInit(BiTree*&t){t=(BiTree*)malloc(sizeof(BiTree));t->lchild=NULL;t->rchild=NULL;}voidPreC
下载地址
用户评论