用C语言来建立二叉树的遍历出现的问题

日期:2022-04-05 21:21:18 人气:1

用C语言来建立二叉树的遍历出现的问题

经验证,没有出现你所说的问题。少了 #include<stdlib.h>
我把初始化函数改了:
Btree *CreateBtree()
{Btree *t,*p;
int i;
Datatype x;
Btree **seq;
seq=(Btree**)malloc(maxsize*sizeof(Btree*));
t=(Bt
    A+
热门评论