其他分享
首页 > 其他分享> > 数据结构课程设计2022夏6-1 查找二叉排序树

数据结构课程设计2022夏6-1 查找二叉排序树

作者:互联网

6-1 查找二叉排序树

要求在二叉排序树中查找指定的关键字,并在查找过程中输出查找过程中历经的节点。

函数接口定义:

 
typedef int KeyType;            //定义关键字类型
typedef struct node                   //记录类型
{    
    KeyType key;                      //关键字项
    struct node *lchild,*rchild;    //左右孩子指针
} BSTNode;
int ReadData(int a[]);   //键盘输入若干个整数,顺序保存在数组a中,并返回输入整数的数量。由裁判程序实现,细节不表。
BSTNode *CreatBST(KeyType A[],int n);    //顺序读入数组A中的关键字, 依序建立一棵二叉排序树并返回根结点指针。由裁判程序实现,细节不表。
int SearchBST(BSTNode *bt,KeyType k) ;   //在函数中输出从根节点出发进行查找的节点路径 ,如果找到k,返回1,否则返回0。
 

裁判测试程序样例:

 

int main()
{
    BSTNode *bt = NULL;
    KeyType k;
    int a[100],N;
        N = ReadData( a ) ;     //键盘输入若干个整数,存储在数组a[]
    bt=CreatBST( a , N );   //根据数组a,创建一棵BST树
    scanf( "%d", &k );      //输入待查找的关键字k
    if ( SearchBST( bt , k ) ) //在SearchBST函数中输出从根节点出发进行查找的节点路径 ,如果找到k,返回1,否则返回0。
        printf(":Found");
    else
        printf(":NOT Found\n");
    return 0;
}

/* 请在这里填写答案 */
 

输入样例1:

9
4 9 0 1 8 6 3 5 7
6
 

输出样例1:

4 9 8 6 :Found
 

提示:在SearchBST函数中的输出语句格式如:printf("%d ",bt->key);

输入样例2:

9
4 9 0 1 8 6 3 5 7
10
 

输出样例2:

4 9 :NOT Found
 

提示:在SearchBST函数中的输出语句格式如:printf("%d ",bt->key);

代码长度限制 16 KB 时间限制 400 ms 内存限制 64 MB
int SearchBST(BSTNode *bt,KeyType k)
{
 
    if(bt==NULL)
    {
        return 0;
    }
    else if(bt->key==k)
    {
        printf("%d ",bt->key);
        return 1;
    }
    else if(bt->key>k)
    { 
        printf("%d ",bt->key);
        return SearchBST(bt->lchild,k);
    }
    else if(bt->key<k)
    {
        printf("%d ",bt->key);
        return SearchBST(bt->rchild,k);
    }
}

 

标签:key,课程设计,2022,int,KeyType,二叉,bt,查找,SearchBST
来源: https://www.cnblogs.com/rongzhang/p/16459843.html