Hello,
can anyone explain to me the basics of hashing? I just dont get it reading the books.
Thanks
help with hash
Moderator: Board moderators
Re: help with hash
Basically an hash function is a mapping between two set of values with the second set generally smaller than the first.ernest wrote:Hello,
can anyone explain to me the basics of hashing? I just dont get it reading the books.
Thanks
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
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
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"