Systems-programming-labs/Week 8-workshop/benchmark_hashtable.h

12 lines
235 B
C

#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <time.h>
#include <sys/time.h>
#include "hashtable.h"
#define TEST_LENGTH 100000 // SOME LARGE VALUE.
#define STRING_LENGTH 127
#define BENCHMARK_ITERATIONS 10000