I'm trying to write hashset in C, and I've found one hash function, that hashes according to bits in data. I have the following structure:
struct triple
{
int a;
int b;
int c;
};
The question is - how to get bit representation from object of type struct triple
? Let's say I want to XOR its bits with 8-bit integer. How would I do that?
Iterate over all the bytes of the
struct
and XOR each one individually, e.g.,Usage would be:
(Note: This answers the question of how to XOR the
struct
with a byte. As for implementing a general hash function based on this, it may not be a particularly good idea since astruct
may have padding, i.e., extra bytes with potentially non-deterministic values unrelated to the values of the actual payload fields.)