#include<stdio.h> #include<stdlib.h> #include<string.h> typedef int DataType; void print(BiTree tree); BiTree CreatBiTree(); typedef struct Node{ DataType data; struct Node *LChild; struct Node *RChild; }BiTNode,* BiTree; void print(BiTree tree) { if(tree){ printf(tree->LChild); printf("%d",tree->data); printf(tree->RChild); } } BiTree CreatBiTree() { char ch; if(ch=='#') return NULL; else{ BiTree Node=((Node *)malloc(Node)); Node->LChild=CreatBiTree(); Node->data=ch; Node->RChild=CreatBiTree(); } } int main() { BiTree tree=NULL; tree=CreatBiTree(); print(tree); return 0; }找错误
时间: 2024-01-03 16:03:04 浏览: 86
这段代码中存在以下几个错误:
1. 缺少头文件定义,应该添加头文件:`#include "stdlib.h"`和`#include "string.h"`。
2. `BiTree`的定义应该在函数之前。
3. `CreatBiTree`函数中缺少输入,应该在函数内部添加一个读取输入字符的语句,例如:`scanf("%c",&ch);`。
4. 在`CreatBiTree`函数中,分配内存的语句应该是`Node=((BiTree)malloc(sizeof(BiTNode)));`,而不是`Node=((Node *)malloc(Node));`。
5. `print`函数中应该打印`tree->LChild`和`tree->RChild`的数据,而不是直接打印指针地址。应该改成:`print(tree->LChild); printf("%d",tree->data); print(tree->RChild);`。
下面是修改后的代码:
```
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef int DataType;
typedef struct Node{
DataType data;
struct Node *LChild;
struct Node *RChild;
} BiTNode,* BiTree;
BiTree CreatBiTree();
void print(BiTree tree);
void print(BiTree tree) {
if(tree){
print(tree->LChild);
printf("%d",tree->data);
print(tree->RChild);
}
}
BiTree CreatBiTree() {
char ch;
scanf("%c",&ch);
if(ch=='#')
return NULL;
else{
BiTree Node=((BiTree)malloc(sizeof(BiTNode)));
Node->LChild=CreatBiTree();
Node->data=ch;
Node->RChild=CreatBiTree();
return Node;
}
}
int main() {
BiTree tree=NULL;
tree=CreatBiTree();
print(tree);
return 0;
}
```
阅读全文