二叉排序树

在链式存储结构上建立一棵二叉排序树。

在链式存储结构上建立一棵二叉排序树。解:在链式存储结构上建立一棵二叉排序树。#define n 10typedef struct node{int key; struct node *lchild,*rchild;}bitree;void bstinsert(bitree *&bt,int key){   if (bt==0){bt=(bitree *)malloc(sizeof(bitr