| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 688 人关注过本帖
标题:二叉排序树究竟是什么??
取消只看楼主 加入收藏
yxm870915
Rank: 1
等 级:新手上路
帖 子:18
专家分:2
注 册:2011-2-10
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
二叉排序树究竟是什么??
本人处于C学习阶段,最近在学习二叉查找树,一直弄不懂这个是不是需要基于已有的树....越看越迷茫,索性谢了一段求修改或者给点相关材料研究一下也行
#include <stdio.h>
#include <stdlib.h>

typedef struct BSTNode
{
    int elem;
    struct BSTNode *Lchild;
    struct BSTNode *Rchild;
}Node;


void BST_Insert(Node *T,int x)
{
    T=(Node*)malloc(sizeof(Node));
    if(T==NULL)
    {
        T->elem=x;
        T->Lchild=NULL;
        T->Rchild=NULL;
    }
    else if(T!=NULL&&T->elem>=x)
        BST_Insert(T->Lchild,x);
    else if(T!=NULL&&T->elem<x)
        BST_Insert(T->Rchild,x);
    else
        printf("ERROR!!!\n");
}
void BST_Create(Node *T,int array[],int size)
{
    int i;
    for(i=0;i<size;i++)
    {
        BST_Insert(T,array[i]);
        printf("%d;",T->elem);
    }
}
void main()
{
    int i;
    int size=5;
    int array[5]={1,2,3,4,5};
    Node *T;
   
    T=(Node*)malloc(sizeof(Node));

    T=NULL;

    //printf("input the size of the array:");
    //scanf("%d",&size);
    for(i=0;i<size;i++)
    {
        printf("Input the No. %d elem:",i);
        scanf("%d",&array[i]);
    }
    BST_Create(T,array,size);
    free(T);
}
先谢谢了~
搜索更多相关主题的帖子: include 
2011-02-10 15:14
yxm870915
Rank: 1
等 级:新手上路
帖 子:18
专家分:2
注 册:2011-2-10
收藏
得分:0 
补充一下本人只会C语言,所以希望用C语法挨批
2011-02-10 15:17
yxm870915
Rank: 1
等 级:新手上路
帖 子:18
专家分:2
注 册:2011-2-10
收藏
得分:0 
回复 3楼 『点点滴滴』
呵呵,谢谢了,但是那个中间变量不需要free吗,还有就是这个能如果要进行双向查询能用链表实现吗?
2011-02-10 20:50
快速回复:二叉排序树究竟是什么??
数据加载中...
 
   



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

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