摘要:
实现二叉排序树的搜索,插入,删除。代码如下: 1 //#define int ElemType 2 #include<stdio.h> 3 #include<stdlib.h> 4 5 //#define int KeyType 6 typedef struct BiTNode{ 7 int data; 8 struct BiTNode *lchild,*rchild; 9 }BiTNode,*BiTree; 10 bool SearchBST(BiTree T,int key,BiTree f,BiTree &p) 11 { 12 if(!T) 13... 阅读全文