摘要:
在数据结构书上,对于B-树的介绍只有部分算法,有点吃力,百度看到一篇介绍B-树的博文,花了较长的时间理解,还有些生疏,把代码暂存,代码来自http://blog.csdn.net/chenhuijie666/article/details/8662554 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<math.h> 4 #define m 3//B-的阶 5 #define MAX 5//字符串最大长度 6 #define N 16 7 typedef int KeyType; 8 9 struct 阅读全文