摘要:
B树是文件系统的基石,也是数据库的基石。学会B树才能更好的学习B+树。 #include <stdio.h> #include <stdlib.h> typedef struct Node { int level; // 树的阶 int keyNum; // 关键字数量 int* keys; // 阅读全文
B树是文件系统的基石,也是数据库的基石。学会B树才能更好的学习B+树。 #include <stdio.h> #include <stdlib.h> typedef struct Node { int level; // 树的阶 int keyNum; // 关键字数量 int* keys; // 阅读全文
posted @ 2024-05-06 14:27
Jikefan
阅读(80)
评论(0)
推荐(0)

浙公网安备 33010602011771号