/dbms-indexing

Database management indexing, using heap file or hash table.

Primary LanguageC

DBMS Indexing

This program examines the importance of indexing in database management optimization, using a heap file or a hash table on some simple data concerning users. The actions taken on the records are insertion, deletion and lookup.

HeapFile :

cd HeapFile && make && ./main

HashTable :

cd HashTable && make && ./main