
数据库
文章平均质量分 77
redstock1231
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
SQLite B+树实现代码
/* btrees.h */ /* * 平衡多路树的一种重要方案。 * 在 1970 年由 R. Bayer 和 E. McCreight 发明。 */ #define M 1 /* B 树的阶,即非根节点中键的最小数目。 * 有些人把阶定义为非根节点中子树的最大数目。 */ typedef int typekey; typedef struct btnode { /* B-Tree 节点转载 2009-03-13 20:52:00 · 860 阅读 · 0 评论 -
Sqlite 源码学习 -- The underlying Os interface with SQLite core
1 数据结构1) OsFile structure -- a structure that holds the integer file descriptor and a pointer to a structure that describes the internal locks on the corresponding inode. -- 这个结构很象一个类,含有成员原创 2009-03-24 20:51:00 · 898 阅读 · 0 评论