数据结构二叉排序树实验报告

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
s->rchild=NULL;
*bst=s;
}
else if(key<(*bst)->key)
InsertBST(&((*bst)->lchild),key);//将s插入左子串
else if(key>(*bst)->key)
InsertBST(&((*bst)->rchild),key);//将s插入右子串
InsertBST(BSTree *bst,int key)
inorder(BSTree bt)
3、完整的程序:
#include"stdio.h"
#include"malloc.h"
typedef struct node
{
int key;//关键字的值
struct node *lchild,*rchild;//左右指针
}BSTNode,*BSTree;
元素类型为整形和指针形。
2、每个模块的分析:
(1)主程序模块:
main()
{
BSTree bt;
printf("please insert the numbers( 以0作为结束标志):\n");
CreateBST(&bt); /*构造排序二叉树*/
printf("\n中序遍历结果是:");
s->rchild=NULL;
*bst=s;
}
else if(key<(*bst)->key)
InsertBST(&((*bst)->lchild),key);//将s插入左子串
else if(key>(*bst)->key)
InsertBST(&((*bst)->rchild),key);//将s插入右子串
}BSTNode,*BSTree;。
(2)void CreateBST(BSTree *bst)创建二叉排序树
(3)void inorder(BSTree bt)递归法中序遍历二叉排序树
(4)void InsertBST(BSTree *bst,int key)二叉排序树的插入结点
2、本程序包含二个模块:
}BSTNode,*BSTree;
void InsertBST(BSTree *bst,int key) //二叉排序树的插入结点
{
BSTree s;
if(*bst==NULL)
{
s=(BSTree)malloc(sizeof(BSTNode));
s->key=key;
s->lchild=NULL;
{
if(bt!=NULL)
{
inorder(bt->lchild);
}
递归法中序遍历二叉排序树
void inorder(BSTree bt)
{
if(bt!=NULL)
{
inorder(bt->lchild);
printf("%3d",bt->key) ;
inorder(bt->rchild);
}
}
3)函数调用关系图
main()
CreateBST(BSTree *bst)
五、概要设计
为了实现上述操作,应以结构体为存储结构。实现如下:
struct node
{
int key;//关键字的值
struct node *lchild,*rchild;//左右指针
}BSTNode,*BSTree;
1、基本操作:
(1)struct node
{
int key;//关键字的值
struct node *lchild,*rchild;//左右指针
三、实验环境
1、硬件配置:Pentium(R) Dual-Core9 CUP E6500 @2.93GHz,1.96的内存
2、软件环境:Microsoft Windows XP Professional Service Pack 3,Microsoft Visual C++ 6.0
四、需求分析
1、输入的形式和输入值的范围:根据题目要求与提示输入一些数字,且数与数之间用空格隔开并用0作为结束符。
scanf("%d",&key);
}
}
二叉排序树的插入结点函数模块
void InsertBST(BSTree *bst,int key)
{
BSTree s;
if(*bst==NULL)
{
s=(BSTree)malloc(sizeof(BSTNode));
s->key=key;
s->lchild=NULL;
}
void CreateBST(BSTree *bst) //创建二叉排序树
{
int key;
*bst=NULL;
scanf("%d",&key);
while(key!=0)
{
InsertBST(bst,key);
scanf("%d",&key);
}
}
void inorder(BSTree bt) //递归法中序遍历二叉排序树
一、实验目的
1、巩固和加深对数据结构课程基本知识的理解,综合数据结构课程里学的理论知识,完成对排序二叉树程序的设计。
2、理解和掌握二叉树的各种基本数据结构的定义、存储结构和相应的算法,并能够用c语言实现。
3、理解排序二叉树的建立过程。
二、实验内容
采用llink-rlink方式存储二叉排序树,编写能够通过键盘输入建立二叉排序树,并在建立完立即在屏幕显示中序遍历结果的程序。
inorder(bt); /*中序遍历排序二叉树*/
printf("\n");
getchar();
}
(2)创建二叉排序树函数模块
void CreateBST(BSTree *bst)
{
int key;
*bst=NULL;
scanf("%d",&key);
while(key!=0)
{
InsertBST(bst,key);
2、输出的形式:建立好的排序二叉树的中序遍历结果。
3、程序所能达到的功能:能够通过键盘输入建立二叉排序树,并在建立完立即在屏幕显示中序遍历结果的程序
4、测试数据:输入45 24 53 12 28 90并用空格将数隔开,以0作为结束符,如:
输入45 24 53 12 28 90
输出的中序遍历结果为:12 24 28 45 53 90
(1)主程序模块;
(2)创建二叉排序树、二叉排序树的插入结点、递归法中序遍历二叉排序树
(3)模块调用图:
主程序模块
创建二叉排序树
二叉排序树的插入结点
递归法中序遍历二叉排序树
3、流程图
流程图如下:
六、详细设计
1、存储类型,元素类型,结点类型:
struct node
{
int key;//关键字的值
strucห้องสมุดไป่ตู้ node *lchild,*rchild;//左右指针
相关文档
最新文档