The fundamentals of Hash tables?
I'm quite confused about the basic concepts of a Hash table. If I were to code a hash how would I even begin? What is the difference between a Hash table and just a normal array?
Basically if someone answered this question I think all my questions would be answered: If I had 100 randomly generated numbers (as keys), how would I implement a hash table and why would that be advantageous over an array?
Psuedo-code or Java would be appreciated as a learning tool...
Solution 1:
The answers so far have helped to define hash tables and explain some theory, but I think an example may help you get a better feeling for them.
What is the difference between a hash table and just a normal array?
A hash table and an array are both structures that allow you to store and retrieve data. Both allow you to specify an index and retrieve a value associated with it. The difference, as Daniel Spiewak noted, is that the indices of an array are sequential, while those of a hash table are based on the value of the data associated with them.
Why would I use a hash table?
A hash table can provide a very efficient way to search for items in large amounts of data, particularly data that is not otherwise easily searchable. ("Large" here means ginormous, in the sense that it would take a long time to perform a sequential search).
If I were to code a hash how would I even begin?
No problem. The simplest way is to invent an arbitrary mathematical operation that you can perform on the data, that returns a number N
(usually an integer). Then use that number as the index into an array of "buckets" and store your data in bucket #N
. The trick is in selecting an operation that tends to place values in different buckets in a way that makes it easy for your to find them later.
Example: A large mall keeps a database of its patrons' cars and parking locations, to help shoppers remember where they parked. The database stores make
, color
, license plate
, and parking location
. On leaving the store a shopper finds his car by entering the its make and color. The database returns a (relatively short) list of license plates and parking spaces. A quick scan locates the shopper's car.
You could implement this with an SQL query:
SELECT license, location FROM cars WHERE make="$(make)" AND color="$(color)"
If the data were stored in an array, which is essentially just a list, you can imagine implementing the query by scanning an array for all matching entries.
On the other hand, imagine a hash rule:
Add the ASCII character codes of all the letters in the make and color, divide by 100, and use the remainder as the hash value.
This rule will convert each item to a number between 0 and 99, essentially sorting the data into 100 buckets. Each time a customer needs to locate a car, you can hash the make and color to find the one bucket out of 100 that contains the information. You've immediately reduced the search by a factor of 100!
Now scale the example to huge amounts of data, say a database with millions of entries that is searched based on tens of criteria. A "good" hash function will distribute the data into buckets in a way that minimizes any additional searching, saving a significant amount of time.
Solution 2:
First, you have to understand a what a hash function is. A hash function is a function that takes a key (for example, an string of arbritrary length) and returns a number as unique as possible. The same key must always return the same hash. A really simple string hashing function in java might look like
public int stringHash(String s) {
int h = s.length();
for(char c : s.toCharArray()) {
h ^= c;
}
return h;
}
You can study a good hash function at http://www.azillionmonkeys.com/qed/hash.html
Now, the hash map uses this hash value to place the value into an array. Simplistic java method:
public void put(String key, Object val) {
int hash = stringHash(s) % array.length;
if(array[hash] == null) {
array[hash] = new LinkedList<Entry<String, Object> >();
}
for(Entry e : array[hash]) {
if(e.key.equals(key)){
e.value = val;
return;
}
}
array[hash].add(new Entry<String, Object>(key, val));
}
(This map enforces unique keys. Not all maps do.)
It is possible for two different keys to hash to the same value, or two different hashes to map to the same array index. There exists many techniques for dealing with this. The simplest is to use a linked list (or binary tree) for each array index. If the hash function is good enough, you will never need a linear search.
Now to look up a key:
public Object get(String key) {
int hash = stringHash(key) % array.length;
if(array[hash] != null) {
for(Entry e : array[hash]) {
if(e.key.equals(key))
return e.value;
}
}
return null;
}
Solution 3:
Hashtables are associative. This is a huge difference from arrays, which are just linear data structures. With an array, you might do something like this:
int[] arr = ...
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i] + 1);
}
Notice how you are getting an element out of the array by specifying an exact memory offset (i
). This contrasts with hashtables, which allow you to store key/value pairs, later retrieving the value based on the key:
Hashtable<String, Integer> table = new Hashtable<String, Integer>();
table.put("Daniel", 20);
table.put("Chris", 18);
table.put("Joseph", 16);
With the above table, we can make the following call:
int n = table.get("Chris");
...and be assured that n
will be valued at 18
.
I think this will probably answer most of your questions. The implementation of a hashtable is a fairly interesting topic, one which Wikipedia addresses passably well.