单选题

二叉排序树的链表节点定义如下: typedef struct BiTnod...

发布于 2022-03-03 17:00:40

二叉排序树的链表节点定义如下:
typedef struct BiTnode{
    int key_value
    struct BiTnode *L,*R/*节点的左、右树指针*/
}

请补充完整查找键值key的函数。
BSTree lookup_key(BSTree root,int key)
{
    if() return NULL
    else 
        if(key == root->key_value)
            return root
        else if(key > root->key_value)
            return (1)
        else
            return (2)
}


登录后免费查看答案
关注者
0
被浏览
37