vote up 1 vote down star
1

What would be a good hash-algorithm to hash dates, e.g. 24/12/09 and 31/10/89?

The dates would range from about year 1950 to 2050.

Could using the unix timestamp somehow, be possible?

flag
1  
Well yes, you can use the UNIX timestamp as there's guaranteed to be a unique one every second. I could answer better if you enlightened us on why you're hashing. – Jed Smith Oct 11 at 18:33
I want to store pairs of dates and then check if excactly that pair has been entered before. – Håkon Oct 11 at 19:40
1  
i'm wondering what's wrong with simple "20091224" and "19891031" – stereofrog Oct 11 at 23:00
@stereofrog, depending on the implementation of the hash, the above would require an allocation of an 20,501,231 sized array, which is quite huge. – cvondrick Oct 12 at 6:01
@cvondrick, in that case I'd rather use binary insertion and sorting. My problem now, is however how I can combine two dates to one number? – Håkon Oct 13 at 14:56

1 Answer

vote up 6 vote down check

You could use the number of days instead of the number of seconds since the start of the Unix Epoch. Just calculate:

<unix timestamp> / 86400
link|flag
2  
are you sure that % is good operation, i would prefer divison. – ralu Oct 11 at 22:42
@ralu: You’re right, it must be division and not modulo since I’m interested in the full days an not the remaining seconds. – Gumbo Oct 12 at 5:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.