Hash table

Address book (dictionary adt) with hashing c source code

The following C project contains the C source code and C examples used for address book (dictionary adt) with hashing. This code is an example implementation of the standard Dictionary ADT. It is implemented as an Address book that uses hashing(instead of a basic sequential search) so that add, search, and delete should run with a Big-O value of O(1) or at least close to it!

Java general purpose hash function algorithms in java

The following java project contains the java source code and java examples used for java general purpose hash function algorithms. The General Hash Function Algorithm library contains implementations for a series of commonly used additive and rotative string hashing algorithm in the Java programming language. For more information please visit: http://www.partow.net/programming/hashfunctions/index.html
Subscribe to RSS - Hash table