This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include "hashtable.h" | |
// Table size. Should be a prime number that is roughly 2x the | |
// number of expected records for optimal performance. | |
#define M 97 | |
// Our record table definition, an array of M records. | |
Record record_table[M]; |