blob: 2c70b38ee0cd6e995f144552682851c655fd1802 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <assert.h>
#define HTRIE_TYPE int
#define HTRIE_KEY int
#define HTRIE_HASH conts_inthash
#define HTRIE_CMP(a, b) ((a) - (b))
#define HTRIE_NAME ints
#include <conts/htrie.h>
int main()
{
struct ints ints = ints_create();
for (int i = 0; i < 1000000; ++i) {
ints_insert(&ints, i, i);
}
for (int i = 0; i < 1000000; ++i) {
int *v = ints_at(&ints, i);
assert(v && *v == i);
}
ints_destroy(&ints);
}
|