2020-12-09
typedef struct Bitnode {char data; struct Bitnode *lchild,*rchild; }Bitnode,*Bitree;Bitree creat(Bitree T) { char x; scanf("%c",&x); if (x==’#’) T=NULL; else {T=(Bitree)malloc(sizeof(Bitnode)); if (!T) {printf(“OVERFLOW\n”);
原创
2020-12-09 10:41:09 ·
72 阅读 ·
0 评论