在这里插入代码片
#include "stdio.h"
#include "malloc.h"
typedef struct node{
char data;
struct node *lchild,*rchild;
}Tree ,*btree;
void creat(btree *t){
char a;
scanf("%c",&a);
if(a==' '){
*t=NULL;
}else{
*
复制二叉树
最新推荐文章于 2023-01-18 16:40:51 发布