Data Fields | |
int | size |
int | count |
int | collisions |
int | resizes |
int | lookups |
int | inserts |
int | deletes |
const char * | name |
struct lh_entry * | head |
struct lh_entry * | tail |
struct lh_entry * | table |
lh_entry_free_fn * | free_fn |
lh_hash_fn * | hash_fn |
lh_equal_fn * | equal_fn |
The hash table structure.
Number of collisions.
int lh_table::count |
Numbers of entries.
Number of deletes.
A pointer onto the function responsible for freeing an entry.
struct lh_entry* lh_table::head |
The first entry.
Number of inserts.
Number of lookups.
const char* lh_table::name |
Name of the hash table.
Number of resizes.
int lh_table::size |
Size of our hash.
struct lh_entry* lh_table::table |
struct lh_entry* lh_table::tail |
The last entry.