摘要: 实现二叉排序树的搜索,插入,删除。代码如下: 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... 阅读全文
posted @ 2013-06-01 23:07 wj704 阅读(186) 评论(0) 推荐(0) 编辑