initial commit
[btree.git] / README
blob3c55603a16537bb21a883878a3a83c223a1f340d
1 This project is my own implementation of B-Tree. And as it progresses,
2 I'm trying to add more functionality to it.
4 Basic:
5 o initialize
6 o insert (key, value)
7 o update (key, value)
8 o delete (key)
9 o lookup (key)
10 o range lookup (key1, key2)
12 Advanced:
13 o sanity check
14 o display, GUI if possible
15 o concurrency
17 Actually, this project is still widely open ended...
19 Guanqun Lu ( guanqun DOT lu AT gmail DOT com )