Link to home
Start Free TrialLog in
Avatar of jnowlin
jnowlin

asked on

BOOKS, Hashing Code and Algorithms. Are there any?

Hi.

Are there any GOOD books out there strictly dedicated
to hashing?

Would there be any books which devote an extensive amount
of pages on hashing and hashing algorithms, WITH CODE?

Ideally, I'd like a book which comes with hashing source
code on a diskette or CD-ROM.

JN
Avatar of yonat
yonat

See
"The Art of Computer Programming" by Donald E. Knuth, Vols 1-3.
Avatar of jnowlin

ASKER

"The Art of Computer Programming" by Donald E. Knuth, Vols 1-3.??

Is this good juicy C stuff???

Jim
Avatar of jnowlin

ASKER

"The Art of Computer Programming" by Donald E. Knuth, Vols 1-3.??

Is this good juicy C stuff???

Jim

PS
I am NOW at:

jnowlin@ma.ultranet.com
Actually volume 3 of Knuth is the one that discusses hashing.


Well - this is not a book dedicated to hashing, but...
A very good book on data structures in general is
      Leendert Ammeraal
      Program and Data Structures in C
      John Wiley and Sons, 1987, ISBN 0-471-91751-6
Covers all kinds of data structures (hash tables are
among those) with special focus given to their implementation
in C (i.e. not Pascal, C++, Java, ...). Contains well written and commented source code. Once you've read this you're spoiled for life (e.g.: How ugly this code in X looks - it only takes n lines
in C).

ASKER CERTIFIED SOLUTION
Avatar of emmons
emmons

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jnowlin

ASKER

Thanks!

Jim