摘要: 以下是一个小项目,用C语言实现了 二叉排序树 的创建、查找、插入、删除、计算总结点数、中序遍历输出和计算平均查找长度。 (昨天的代码没能成功算平均查找长度,立了flag说之后填坑,没想到今天就成功啦!!!哈哈代码如下:) 1 #include 2 using namespace std; 3 typedef int KeyType; 4 typedef struct nod... 阅读全文