Welcome to this repository containing three core projects that explore the internal workings of database systems, from heap file management to indexing with B+ trees and external sorting algorithms. Built in C and leveraging block-level file management, these assignments demonstrate foundational database concepts.
Implementation of a heap file structure to manage records at the block level.
- Key Features:
- Create, open, and close heap files.
- Insert, retrieve, and update records.
- Block-level memory management (pinning/unpinning, dirty flags).
- Detailed README
Efficient indexing using B+ trees for fast record retrieval.
- Key Features:
- Create and manage B+ tree files.
- Insert entries with primary key checks (no duplicates).
- Search for records by
id
with logarithmic complexity. - Detailed README
External sorting algorithm for large datasets using chunking and multi-way merging.
- Key Features:
- Split data into sorted chunks.
- Merge chunks iteratively (b-way merge).
- Optimized block I/O operations.
- Detailed README
- Language: C (C99 standard)
- Block Management: Custom block-level library (
BF
for buffer management). - Tools: GNU Make, Valgrind (for memory debugging).
- Concepts: File organization, indexing, sorting, memory optimization.