2022-11-19 20:28:13 +01:00
|
|
|
/******************************************************************************/
|
|
|
|
/* HashSet for C99, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2022-11-19 17:34:56 +01:00
|
|
|
#define _CRT_RAND_S 1
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "hash_set.h"
|
|
|
|
|
|
|
|
static uint64_t next_rand(void)
|
|
|
|
{
|
|
|
|
uint32_t a, b;
|
|
|
|
if (rand_s(&a) || rand_s(&b))
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
return (((uint64_t)a) << 32) | b;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
hash_set_t *const set = hash_set_create(-1.0, 0, 0U);
|
|
|
|
if (!set)
|
|
|
|
{
|
|
|
|
puts("Allocation has failed!");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2022-11-19 18:42:09 +01:00
|
|
|
uint8_t spinner = 0U;
|
|
|
|
clock_t next_update = clock() + (2U * CLOCKS_PER_SEC);
|
2022-11-19 17:34:56 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2022-11-19 20:28:13 +01:00
|
|
|
const errno_t error = hash_set_insert(set, next_rand() & 0x3FFFFFFFFFFFFFFllu);
|
|
|
|
if (error)
|
2022-11-19 17:34:56 +01:00
|
|
|
{
|
2022-11-19 20:28:13 +01:00
|
|
|
printf("Insert has failed! (error: %d)\n", error);
|
2022-11-19 17:34:56 +01:00
|
|
|
break;
|
|
|
|
}
|
2022-11-19 18:42:09 +01:00
|
|
|
if (!(++spinner & 0x7F))
|
2022-11-19 17:34:56 +01:00
|
|
|
{
|
2022-11-19 18:42:09 +01:00
|
|
|
const clock_t now = clock();
|
|
|
|
if (now >= next_update)
|
|
|
|
{
|
2022-11-19 20:28:13 +01:00
|
|
|
printf("%zu\n", hash_set_size(set));
|
2022-11-19 18:42:09 +01:00
|
|
|
next_update = now + (2U * CLOCKS_PER_SEC);
|
|
|
|
}
|
2022-11-19 17:34:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hash_set_destroy(set);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|