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); }