blob: 2ef33317c6c76c2525ec05b1ffeb45427663041d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# database engine in c
sources:
https://www.geeksforgeeks.org/dsa/introduction-of-b-tree-2/
github.com/tsoding/sv/blob/master/sv.h
https://github.com/semitrivial/csv_parser
Introduction to Algorithms, Fourth Edition
ISBN-10 : 026204630X
ISBN-13 : 978-0262046305
chapter 18: B-Trees
https://github.com/tidwall/btree.c/blob/master/btree.c
https://www.youtube.com/watch?v=TOb1tuEZ2X4&t=716s
- good explanations on insertion and searching
https://www.geeksforgeeks.org/dsa/insert-operation-in-b-tree/
|