資料結構試驗:
/*
已知,二叉樹存儲結構定義見bstree.h,請編寫一個算法函數bstree creatBstree(int a[],int n),
以數組a中的資料作為輸入建立一棵二叉排序樹,并将建立的二叉排序樹進行中序周遊。
(提示,a中的原始資料可從data1.txt中讀入,實驗代碼詳見lab9_05.c)
*/
#include "Arrayio.h"
#include "bstree.h"
#define N 100
bstree insertBST(bstree tree,int key)
{
if(tree==NULL)
{
tree = (bstree)malloc(sizeof(bsnode));
tree ->key = key;
tree ->lchild = tree ->rchild = NULL;
}
else
{
if(key>tree->key)
{
tree ->rchild = insertBST(tree->rchild,key);
}
else
{
tree ->lchild = insertBST(tree->lchild,key);
}
}
return tree;
}
bstree creatBstree(int a[],int n)
{
/*根據輸入的結點序列,建立一棵二叉排序樹,并傳回根結點的位址*/
bstree tree = NULL;
for(int i=0; i<n; i++)
tree = insertBST(tree,a[i]);
return tree;
}
int main()
{
int n,a[N];
bstree p,t;
n=readData(a,N,"data1.txt");
output(a,n);
t=creatBstree(a,n); /*建立二叉排序樹*/
printf("中序周遊:\n");
inorder(t); /*中序周遊二叉排序樹*/
return 0;
}