| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1060 人关注过本帖
标题:数据结构 二叉树定义问题
只看楼主 加入收藏
whbah
Rank: 1
等 级:新手上路
帖 子:7
专家分:3
注 册:2009-2-16
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
数据结构 二叉树定义问题
btree *insert_node(btree *root,int node)
{
    btree *newpointer;
    btree *currentpointer;
    btree *parentpointer;
    newpointer=(btree*)malloc(sizeof(btree));
    newpointer->data=node;
    newpointer->lchild=NULL;
    newpointer->rchild=NULL;
    if(root==NULL)
    {
        return newpointer;
    }
    else
    {
        currentpointer=root;
        while(currentpointer!=NULL)
        {
            parentpointer=currentpointer;
            if(currentpointer->data>node)
            {
                currentpointer=currentpointer->lchild;
            }
            else
            {
                currentpointer=currentpointer->rchild;
            }
        }
        if(parentpointer->data>node)
        {
            parentpointer->lchild=newpointer;
        }
        else
        {
            parentpointer->rchild=newpointer;
        }
        return root;
    }
}
btree *create_btree(int data[],int len)
{
    int i;
    btree *root=NULL;
    for(i=0;i<len;i++)
    {
        root=insert_node(root,data[i]);
    }
    return root;
}
显示  处未处理的异常: 0xC0000005:
Bitree.exe 中的 0x00414c5e 处最可能的异常: 0xC0000005: 读取位置 0xccccccd0 时发生访问冲突
Bitree.exe 中的 0x00414c5e 处未处理的异常: 0xC0000005: 读取位置 0xccccccd0 时发生访问冲突
程序“[4012] Bitree.exe: 本机”已退出,返回值为 0 (0x0)。
搜索更多相关主题的帖子: 定义 数据结构 二叉树 
2009-11-15 09:16
pangding
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:北京
等 级:贵宾
威 望:94
帖 子:6784
专家分:16751
注 册:2008-12-20
收藏
得分:20 
你跟踪一下程序,看看出的什么问题呗。
或者你可以反汇编,看看 0x00414c5e 这个位置的语句做了什么。
2009-11-15 11:26
快速回复:数据结构 二叉树定义问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.037208 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved