免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2320 | 回复: 10
打印 上一主题 下一主题

二叉搜索树的插入问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-05 20:37 |只看该作者 |倒序浏览
为什么总是插不入结点。
#include<stdio.h>
#include<stdlib.h>

struct tree
{
        int data;
        struct tree *left,*right;
};
typedef struct tree Tree;

Tree *bs_search(Tree *base , int key);
void insert(Tree *base, int key);
void travel(Tree *base);

Tree *bs_search(Tree *base , int key)
{
        if(base==NULL)
                return NULL;
        if(base->data==key)
                return base;
        else
        {
                if(key>base->data)
                {
                        base=base->right;
                        bs_search(base,key);
                }
                else
                {
                        base=base->left;
                        bs_search(base,key);
                }
        }
}

void insert(Tree *base,int key)
{
        //add your code
        Tree *cur=(Tree *)malloc(sizeof(Tree));
        Tree *temp=(Tree *)malloc(sizeof(Tree));
        temp->data=key;
        temp->left=NULL;
        temp->right=NULL;
        cur=bs_search(base,key);
        if(cur!=NULL)
        {
                return ;
        }       
        if(cur==NULL)
        {
                cur=temp;
                return ;
        }
}

void travel(Tree *base)
{
        //add your code
        if(base==NULL)
                return;
        else
        {
                printf(" %d ",base->data);
                travel(base->left);
                travel(base->right);
        }
        printf("\n");
}

int main()
{
        Tree *base=(Tree *)malloc(sizeof(Tree));
    int a[]={2,5,7,5,1,9};
        int i;
        base->data=6;
        base->left=NULL;
        base->right==NULL;
        insert(base,2);
        //for(i=0;i<6;i++)
        //{
        //        insert(base,a[i]);
        //}
        travel(base);
        return 0;
}

论坛徽章:
0
2 [报告]
发表于 2006-07-05 23:42 |只看该作者
#include<stdio.h>
#include<stdlib.h>

struct tree
{
        int data;
        struct tree *left,*right;
};
typedef struct tree Tree;

Tree **bs_search(Tree **base , int key);
void insert(Tree *base, int key);
void travel(Tree *base);

Tree **bs_search(Tree **base , int key)
{
        if((*base)==NULL)
                return base;
        if((*base)->data==key)
                return NULL;
        else
        {
                if(key>(*base)->data)
                {
                        base=&((*base)->right);
                        bs_search(base,key);
                }
                else
                {
                        base=&((*base)->left);
                        bs_search(base,key);
                }
        }
}

void insert(Tree *base,int key)
{
        //add your code
        Tree **cur=NULL;
        Tree *temp=(Tree *)malloc(sizeof(Tree));
        temp->data=key;
        temp->left=NULL;
        temp->right=NULL;
        cur=bs_search(&base,key);
        if(cur==NULL)
        {
                printf("jh");
                return ;
        }      
        if(cur!=NULL)
        {
                *cur=temp;
                return ;
        }
}

void travel(Tree *base)
{
        //add your code
        if(base==NULL)
                return;
        else
        {
                printf(" %d ",base->data);
                travel(base->left);
                travel(base->right);
        }
        printf("\n");
}

int main()
{
        Tree *base=(Tree *)malloc(sizeof(Tree));
            int a[]={2,5,7,5,1,9};
        int i;
        base->data=6;
        base->left=NULL;
        base->right=NULL;
        insert(base,2);
        for(i=0;i<6;i++)
        {
                insert(base,a[i]);
        }
        printf("%d",base->left);
        travel(base);
        return 0;
}

我按照楼主的写了一下。。不过在vc下能实现。。在gcc下也不能插入。。不知道为什么

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
3 [报告]
发表于 2006-07-06 00:23 |只看该作者

  1. Tree **bs_search(Tree **base , int key)
  2. {
  3.         if((*base)==NULL)
  4.                 return base;
  5.         if((*base)->data==key)
  6.                 return NULL;
  7.         else
  8.         {
  9.                 if(key>(*base)->data)
  10.                 {
  11.                         base=&((*base)->right);
  12.                         return bs_search(base,key);
  13.                 }
  14.                 else
  15.                 {
  16.                         base=&((*base)->left);
  17.                         return bs_search(base,key);
  18.                 }
  19.         }
  20. }
复制代码

代码用[ code ]括起来。

论坛徽章:
0
4 [报告]
发表于 2006-07-06 00:33 |只看该作者
  1. Breakpoint 3, bs_search (base=0x804a00c, key=2) at b-tree.c:17
  2. 17              if((*base)==NULL)
  3. (gdb)
  4. 18                      return base;
  5. (gdb) print base
  6. $3 = (Tree **) 0x804a00c
  7. (gdb) next
  8. 34      }
  9. (gdb)
  10. insert (base=0x804a008, key=2) at b-tree.c:45
  11. 45              if(cur==NULL)
  12. (gdb) print cur
  13. $4 = (Tree **) 0xbffffc7c
  14. (gdb) Quit
  15. (gdb)
复制代码


这是gdb调试信息。。。
return base时base=0x804a00c
怎么cur=bs_search(&base,key)后cur=0xbffffc7c了?

论坛徽章:
0
5 [报告]
发表于 2006-07-06 00:38 |只看该作者
原帖由 earl808 于 2006-7-6 00:33 发表
[code]Breakpoint 3, bs_search (base=0x804a00c, key=2) at b-tree.c:17
17              if((*base)==NULL)
(gdb)
18                      return base;
(gdb) print base
$3 = (Tree **) 0x804a00c
(gd ...



cur 是个 local var

论坛徽章:
0
6 [报告]
发表于 2006-07-06 00:41 |只看该作者
cur的作用域不是在整个insert函数里吗?
返回值是0x804a00c
不也就是cur=0x804a00c
cur的赋值和gdb中的检测是在同一个作用域啊
为什么会变了呢?

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
7 [报告]
发表于 2006-07-06 01:11 |只看该作者
你都没看我给出的代码呀?

论坛徽章:
0
8 [报告]
发表于 2006-07-06 01:18 |只看该作者
。。对不起啊。。还以为你只是提示我要用code呢。。
应该是说base是个local var..

论坛徽章:
0
9 [报告]
发表于 2006-07-06 22:39 |只看该作者

??

是不是用bs_search()搜索返回的结点不是需要插入的节点。

论坛徽章:
0
10 [报告]
发表于 2006-07-06 23:50 |只看该作者
原帖由 yyaadet 于 2006-7-6 22:39 发表
是不是用bs_search()搜索返回的结点不是需要插入的节点。

嗯,我们平时向二叉树插入时一般都是用base->right..这其实是一个指针。。。
你不能直接返回right,所以要用指针的指针指向right
不过可以返回一个base和一个标志,标志用来说明是left还是right,这样的参数简单点
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP