1
Fork 0
turbonss/examples/vector_adapter_ex1.c

41 lines
1.3 KiB
C
Raw Normal View History

2005-07-26 00:26:17 +03:00
#include <cmph.h>
#include <string.h>
2005-07-26 00:26:17 +03:00
// Create minimal perfect hash function from in-memory vector
int main(int argc, char **argv)
{
// Creating a filled vector
2008-03-30 02:23:41 +02:00
unsigned int i = 0;
2005-07-26 00:26:17 +03:00
const char *vector[] = {"aaaaaaaaaa", "bbbbbbbbbb", "cccccccccc", "dddddddddd", "eeeeeeeeee",
2008-03-30 02:23:41 +02:00
"ffffffffff", "gggggggggg", "hhhhhhhhhh", "iiiiiiiiii", "jjjjjjjjjj"};
2005-07-26 00:26:17 +03:00
unsigned int nkeys = 10;
2008-03-30 02:23:41 +02:00
FILE* mphf_fd = fopen("temp.mph", "w");
2005-07-26 00:26:17 +03:00
// Source of keys
cmph_io_adapter_t *source = cmph_io_vector_adapter((char **)vector, nkeys);
2005-07-26 00:26:17 +03:00
//Create minimal perfect hash function using the default (chm) algorithm.
cmph_config_t *config = cmph_config_new(source);
cmph_config_set_algo(config, CMPH_BRZ);
cmph_config_set_mphf_fd(config, mphf_fd);
2005-07-26 00:26:17 +03:00
cmph_t *hash = cmph_new(config);
cmph_config_destroy(config);
2008-03-30 02:23:41 +02:00
cmph_dump(hash, mphf_fd);
cmph_destroy(hash);
fclose(mphf_fd);
2005-07-26 00:26:17 +03:00
//Find key
2008-03-30 02:23:41 +02:00
mphf_fd = fopen("temp.mph", "r");
hash = cmph_load(mphf_fd);
while (i < nkeys) {
const char *key = vector[i];
2008-04-12 09:17:21 +03:00
unsigned int id = cmph_search(hash, key, (cmph_uint32)strlen(key));
fprintf(stderr, "key:%s -- hash:%u\n", key, id);
2008-03-30 02:23:41 +02:00
i++;
}
2005-07-26 00:26:17 +03:00
//Destroy hash
cmph_destroy(hash);
2005-10-10 20:43:21 +03:00
cmph_io_vector_adapter_destroy(source);
2008-03-30 02:23:41 +02:00
fclose(mphf_fd);
2005-07-26 00:26:17 +03:00
return 0;
}