The fundamentals of Hash tables?

前端 未结 11 788
灰色年华
灰色年华 2020-12-07 08:23

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

相关标签:
11条回答
  • 2020-12-07 08:48

    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.

    0 讨论(0)
  • 2020-12-07 08:48

    "I'm more interested in the way Hash Tables look up the key and how the key is generated."

    1. Hashing transforms a key object to a number. This is called "hashing" -- it makes a hash out of the object. See Hash Function. Summing the bytes of a string, for example, is a standard hash technique. You compute the sum modulo 232 to keep the hash to a manageable size. Hash always gives the same answer. This is O(1).

    2. The number gives you a "slot" in the HashTable. Given an arbitrary key object, the hash value computes a hash value. The hash value then gives you the slot in table. Usually mod( hash, table size ). This is O(1), also.

    That's the general solution. Two numeric calculations and you've gone from arbitrary object as key to arbitrary object as value. Few things can be as fast.

    The transformation from object to hash value happens in one of these common ways.

    1. If it's a "primitive" object of 4 bytes, then the object's native value is a number.

    2. The object's address is 4 bytes, then the object's address can be used as a hash value.

    3. A simple hash function (MD5, SHA1, whatever) accumulates the bytes of the object to create a 4-byte number. The advanced hashes aren't simple sums of bytes, a simple sum doesn't reflect all the original input bits fairly enough.

    The slot in the hash table is mod( number, size of table ).

    If that slot has the desired value, you're done. If that's not the desired value, you need to look somewhere else. There are several popular probing algorithms to look for a free spot in the table. Linear is a simple search for the next free spot. Quadratic is a non-linear hopping around looking for a free slot. A random number generator (with a fixed seed) can be used to generate a series of probes that will spread data evenly but arbitrarily.

    The probing algorithms are not O(1). If the table's big enough, the odds of collision are low, and probes don't matter. If the table's too small, then collisions happen and probing happens. At that point, it becomes a matter of "tuning and tweaking" to balance probing and table size to optimize performance. Usually we just make the table bigger.

    See Hash Table.

    0 讨论(0)
  • 2020-12-07 08:49

    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;
    }
    
    0 讨论(0)
  • 2020-12-07 08:50

    The question, I believe, is answered quite clearly and in many different ways by now.

    I would just like to add another perspective (which may confuse a new reader as well)

    At a level of least abstraction, arrays are just contiguous block of memory. Given the starting address (startAddress), size (sizeOfElement) and the index of a single element, the address of element is computed as:

    elementAddress = startAddress + sizeOfElement * index
    

    The interesting thing to note here is that arrays can be abstracted/viewed as hash tables with index as key and the above function as a hash function which calculates the location of a value in O(1)

    0 讨论(0)
  • 2020-12-07 08:56

    I'll answer that part about the difference between a hash table and an array... but since I've never implemented a hashing algorithm of any import before, I'll leave that to somebody more knowledgeable :)

    An array is just an ordered list of objects. The object itself doesn't really matter... what's important is that if you want to list the objects in order of insertion, it is always the same (meaning that the first element always has an index of 0).

    As for a hashtable, that's indexed by keys, not order... I think that a basic search on hashing algorithms will give you a lot more insight than I can... Wikipedia has a very decent one... that determines "bucket" that the keys go into for quick retrieval on arbitrary objects used as keys.

    As for advantages: If order of insertion is important, an array or some kind of ordered list is necessary. If fast look-up by arbitrary key (keyed by various hash functions) is important, then a hash table makes sense.

    0 讨论(0)
  • 2020-12-07 08:58

    [This is the reply to a comment made by me.yahoo.com/a above]

    That depends on your hash function. Lets suppose that your hash function hashes a word as per the length of your word, the key for chris will be 5. Similarly, key for yahoo will also be 5. Now, both values (chris and yahoo) will go under 5 (i.e. in a 'bucket' keyed by 5). This way you don't have to make an array equal to the size of your data.

    0 讨论(0)
提交回复
热议问题