help with hash

Let's talk about algorithms!

Moderator: Board moderators

Post Reply
ernest
New poster
Posts: 7
Joined: Fri Feb 13, 2004 5:01 pm

help with hash

Post by ernest »

Hello,

can anyone explain to me the basics of hashing? I just dont get it reading the books.

Thanks
--ernesto
CDiMa
Experienced poster
Posts: 214
Joined: Fri Oct 17, 2003 5:49 pm
Location: Genova

Re: help with hash

Post by CDiMa »

ernest wrote:Hello,

can anyone explain to me the basics of hashing? I just dont get it reading the books.

Thanks
Basically an hash function is a mapping between two set of values with the second set generally smaller than the first.
Given an input value should be computationally easy to calculate the hash value for that input.
Conversely it should be computationally difficult to find an input value that's mapped to a given hash value.

Hash functions have several applications particularly in encription algorithms and database indexing.

What in particular do you need to know about hashing?

Ciao!!!

Claudio
anupam
A great helper
Posts: 405
Joined: Wed Aug 28, 2002 6:45 pm
Contact:

Post by anupam »

Please don't mind, reading books is much better than giving a member of the board trouble.

You can read the book of data structure of Reingold. I think it is best for concept. Again read the features of c,c++ from STL library help.
--
Anupam
"Everything should be made simple, but not always simpler"
Post Reply

Return to “Algorithms”