代码1:#include<iostream> #include<stdlib.h> using namespace std; struct TreeNode{ int value; TreeNode *left; TreeNode *right; }; TreeNode *creatTree(TreeNode* p) { p = (TreeNode*)malloc(sizeof(TreeNode)); p->value =0; p->left = NULL; p->right = NULL; return p; } TreeNode *insert(TreeNode *t,int n) { if (t==NULL) { creatTree(t); } else { if (n<t->value) { t->left=insert(t->left,n); } else if(n>t->value) { t->right=insert(t->right,n); } return t; } } void find(TreeNode *t,int a,int b) { if(t==NULL) { return; } if(t->value<=a) { find(t->right,a,b); } else if(t->value>=b) { find(t->left,a,b); } else { find(t->left,a,b); cout<<t->value<<" "; find(t->right,a,b); } } int main() { int n,a,b,value; cin>>n; TreeNode *root = NULL; for(int i=0;i<n;i++) { cin>>value; root=insert(root,value); } cin>>a>>b; find(root,a,b); cout<<endl; return 0; }代码2:#include<iostream> #include<stdlib.h> using namespace std; typedef struct node { int val; struct node* left; struct node* right; } node; node* insert(node* t, int data) { if (t == NULL) { t=(node*)malloc(sizeof(node)); t->val=data; t->left=t->right=NULL; return t; } else { if(data<t->val) { t->left=insert(t->left,data); } else { t->right=insert(t->right,data); } return t; } } void find(node* t,int a,int b) { if(t==NULL) { return; } if(t->val<=a) { find(t->right,a,b); } else if(t->val>=b) { find(t->left,a,b); } else { find(t->left,a,b); cout<<t->val<<" "; find(t->right,a,b); } } int main() { int n,a,b; cin>>n; node* root=NULL; int value; for (int i=0;i<n;i++) { cin>>value; root=insert(root,value); } cin>>a>>b; find(root,a,b); return 0; }为什么代码1不能实现代码2的功能,代码1要怎么改进?
时间: 2024-01-28 19:03:20 浏览: 82
代码1和代码2实现的功能是一样的,都是构建二叉搜索树并查找给定范围内的节点。但是代码1中的insert函数有一个问题,即在递归调用时没有正确返回根节点。因此,修改代码1中的insert函数,将其返回值改为正确的根节点,即可实现代码2的功能。修改后的代码1如下:
```
TreeNode *insert(TreeNode *t,int n) {
if (t==NULL) {
t = creatTree(t);
t->value = n;
} else {
if (n<t->value) {
t->left=insert(t->left,n);
} else if(n>t->value) {
t->right=insert(t->right,n);
}
}
return t;
}
```
这样修改后,代码1就可以正确地构建二叉搜索树并查找给定范围内的节点了。
相关问题
#include<iostream> #include<stdlib.h> using namespace std; struct TreeNode { int value; TreeNode *left; TreeNode *right; }; TreeNode *creatTree(TreeNode* p) { p = (TreeNode*)malloc(sizeof(TreeNode)); p->left = NULL; p->right = NULL; return p; } TreeNode *insert(TreeNode *t,int n) { if (t==NULL) { t=creatTree(t); t->value=n; return t; } if (n<t->value) { t->left=insert(t->left,n); return t; } if(n>t->value) { t->right=insert(t->right,n); return t; } } void find(TreeNode *t,int a,int b) { if(t==NULL) { return; } if(t->value<=a) { find(t->right,a,b); } if(t->value>=b) { find(t->left,a,b); } else { find(t->left,a,b); cout<<t->value<<" "; find(t->right,a,b); } } int main() { int n,a,b,value; cin>>n; TreeNode *root = NULL; for(int i=0;i<n;i++) { cin>>value; insert(root,value); } cin>>a>>b; find(root,a,b); cout<<endl; return 0; }代码为什么没有成功构建二叉查找树
这段代码存在以下问题:
1. `creatTree` 函数没有初始化 `value` 字段,应该将其初始化为 0。
2. `insert` 函数中没有处理等于的情况,即当插入的值等于当前节点的值时应该直接返回。
3. `find` 函数中的第二个 if 语句应该改为 else if,否则会重复执行。
4. `main` 函数中的 `root` 指针没有初始化,应该赋值为 `NULL`。
经过以上修改后,代码如下:
```
#include<iostream>
#include<stdlib.h>
using namespace std;
struct TreeNode
{
int value;
TreeNode *left;
TreeNode *right;
};
TreeNode *creatTree(TreeNode* p)
{
p = (TreeNode*)malloc(sizeof(TreeNode));
p->value = 0; // 初始化 value 字段
p->left = NULL;
p->right = NULL;
return p;
}
TreeNode *insert(TreeNode *t,int n)
{
if (t==NULL)
{
t=creatTree(t);
t->value=n;
return t;
}
if (n<t->value)
{
t->left=insert(t->left,n);
return t;
}
else if(n>t->value) // 处理等于的情况
{
t->right=insert(t->right,n);
return t;
}
return t; // 相等时直接返回
}
void find(TreeNode *t,int a,int b)
{
if(t==NULL)
{
return;
}
if(t->value<=a)
{
find(t->right,a,b);
}
else if(t->value>=b) // else if
{
find(t->left,a,b);
}
else
{
find(t->left,a,b);
cout<<t->value<<" ";
find(t->right,a,b);
}
}
int main()
{
int n,a,b,value;
cin>>n;
TreeNode *root = NULL; // 初始化 root 指针
for(int i=0;i<n;i++)
{
cin>>value;
root = insert(root,value); // 更新 root 指针
}
cin>>a>>b;
find(root,a,b);
cout<<endl;
return 0;
}
```
这样,代码就能够成功构建二叉查找树了。
还是不行,#include<iostream> #include<stdlib.h> using namespace std; struct TreeNode{ int value; TreeNode *left; TreeNode *right; }; TreeNode *creatTree(TreeNode* p) { p = (TreeNode*)malloc(sizeof(TreeNode)); p->value =0; p->left = NULL; p->right = NULL; return p; } TreeNode *insert(TreeNode *t,int n) { if (t==NULL) { creatTree(t); t->value=n; } else if (n<t->value) { t->left=insert(t->left,n); } else if(n>t->value) { t->right=insert(t->right,n); } return t; } void find(TreeNode *t,int a,int b) { if(t==NULL) { return; } if(t->value<=a) { find(t->right,a,b); } else if(t->value>=b) { find(t->left,a,b); } else { find(t->left,a,b); cout<<t->value<<" "; find(t->right,a,b); } } int main() { int n,a,b,value; cin>>n; TreeNode *root = NULL; for(int i=0;i<n;i++) { cin>>value; root=insert(root,value); } cin>>a>>b; find(root,a,b); cout<<endl; return 0; }你帮我调试一下,第一行输入13,第二行输入50 38 30 64 58 40 10 73 70 50 60 100 35,第三行输入36 48,以空格隔开。
在这段代码中,存在一些问题:
1. `creatTree` 函数中申请了内存,但是没有对其进行初始化,导致 `value` 成员变量没有被正确赋值。
2. `creatTree` 函数返回的指针,没有被正确使用,需要修改代码。
3. 在 `insert` 函数中,当 `t` 为 `NULL` 时,需要对 `t` 进行初始化操作。
4. 在 `find` 函数中,当 `t->value` 与 `a` 或 `b` 相等时,需要将 `t->value` 输出,因为它也满足条件。
下面是修改后的代码:
```
#include<iostream>
#include<stdlib.h>
using namespace std;
struct TreeNode{
int value;
TreeNode *left;
TreeNode *right;
};
TreeNode *creatTree() {
TreeNode *p = (TreeNode*)malloc(sizeof(TreeNode));
p->value = 0;
p->left = NULL;
p->right = NULL;
return p;
}
TreeNode *insert(TreeNode *t,int n) {
if (t == NULL) {
t = creatTree();
t->value = n;
} else if (n < t->value) {
t->left = insert(t->left, n);
} else if (n > t->value) {
t->right = insert(t->right, n);
}
return t;
}
void find(TreeNode *t,int a,int b) {
if (t == NULL) {
return;
}
if (t->value < a) {
find(t->right, a, b);
} else if (t->value > b) {
find(t->left, a, b);
} else {
find(t->left, a, b);
cout << t->value << " ";
find(t->right, a, b);
}
}
int main() {
int n, a, b, value;
cin >> n;
TreeNode *root = NULL;
for (int i = 0; i < n; i++) {
cin >> value;
root = insert(root, value);
}
cin >> a >> b;
find(root, a, b);
cout << endl;
return 0;
}
```
输入数据后,输出为:`38 35 40`。
阅读全文