SlideShare una empresa de Scribd logo
1 de 10
Descargar para leer sin conexión
Computer Science 385
                                     Analysis of Algorithms
                                     Siena College
                                     Spring 2011


                      Topic Notes: Maps and Hashing


Maps/Dictionaries
A map or dictionary is a structure used for looking up items via key-value associations.
There are many possible implementations of maps. If we think abstractly about a few variants,
we can consider their time complexity on common opertions and space complexity. In the table
below, n denotes the actual number of elements in the map, and N denote the maximum number
of elements it could contain (where that restriction makes sense).
 Structure                   Search   Insert   Delete   Space
 Linked List                  O(n)    O(1)     O(n)      O(n)
 Sorted Array               O(log n)  O(n)     O(n)     O(N )
 Balanced BST               O(log n) O(log n) O(log n)   O(n)
 Array[KeyRange] of EltType   O(1)    O(1)     O(1)    KeyRange
That last line is very interesting. If we know the range of keys (suppose they’re all integers between
0 and KeyRange-1) we can use the key as the index directly into an array. And have constant time
access!


Hashing
The map implementation of an array with keys as the subscripts and values as contents makes a
lot of sense. For example, we could store information about members of a team whose uniform
numbers are all within a given range by storing each player’s information in the array location
indexed by their uniform number. If some uniform numbers are unused, we’ll have some empty
slots, but it gives us constant time access to any player’s information as long as we know the
uniform number.
However, there are some important restrictions on the use of this representation.
This implementation assumes that the data has a key which is of a type that can be used as an array
subscript (some enumerated type in Pascal, integers in C/C++/Java), which is not always the case.
What if we’re trying to store strings or doubles or something more complex?
Moreover, the size requirements for this implementation could be prohibitive. Suppose we wanted
to store 2000 student records indexed by social security number or a Siena ID number. We would
need an array with 1 billion elements!
In cases like this, where most of the entries will be empty, we would like to use a smaller array, but
come up with a good way to map our elements into the array entries.
CS 385                               Analysis of Algorithms                           Spring 2011



Suppose we have a lot of data elements of type E and a set of indices in which we can store data
elements. We would like to obtain a function H: E → index, which has the properties:

   1. H(elt) can be computed quickly

   2. If elt1 = elt2 then H(elt1) = H(elt2). (i.e., H is a one-to-one function)

This is called a perfect hashing function. Unfortunately, they are difficult to find unless you know
all possible entries to the table in advance. This is rarely the case.
Instead we use something that behaves well, but not necessarily perfectly.
The goal is to scatter elements through the array randomly so that they won’t attempt to be stored
in the same location, or “bump into” each other.
So we will define a hash function H: Keys → Addresses (or array indices), and we will call
H(element.key) the home address of element.
Assuming no two distinct elements wind up mapping to the same location, we can now add, search
for, and remove them in O(1) time.
The one thing we can no longer do efficiently that we could have done with some of the other maps
is to list them in order.
Since the function is not guaranteed to be one-to-one, we can’t guarantee that no two distinct
elements map to the same home address.
This suggests two problems to consider:

   1. How to choose a good hashing function?

   2. How to resolve the situation where two different elements are mapped to same home address?


Selecting Hashing Functions
The following quote should be memorized by anyone trying to design a hashing function:
“A given hash function must always be tried on real data in order to find out whether it is effective
or not.”
Data which contains unexpected and unfortunate regularities can completely destroy the usefulness
of any hashing function!
We will start by considering hashing functions for integer-valued keys.

Digit selection As the name suggests, this involved choosing digits from certain positions of key
      (e.g., last 3 digits of a SSN).
      Unfortunately it is easy to make a very unfortunate choice. We would need careful analysis
      of the expected keys to see which digits will work best. Likely patterns can cause problems.

                                                 2
CS 385                                Analysis of Algorithms                          Spring 2011



      We want to make sure that the expected keys are at least capable of generating all possible
      table positions.
      For example the first digits of SSN’s reflect the region in which they were assigned and hence
      usually would work poorly as a hashing function.
      Even worse, what about the first few digits of a Siena ID number?

Division Here, we let H(key) = key mod TableSize
      This is very efficient and often gives good results if the TableSize is chosen properly.
      If it is chosen poorly then you can get very poor results. Consider the case where TableSize
      = 28 = 256 and the keys are computed from ASCII equivalent of two letter pairs, i.e.
      Key(xy) = 28 · ASCII(x) + ASCII(y), then all pairs ending with the same letter get
      mapped to same address. Similar problems arise with any power of 2.
      It is usually safest to choose the TableSize to be a prime number in the range of your
      desired table size. The default size in the structure package’s hash table is 997.

Mid-Square Here, the approach is to square the key and then select a subset of the bits from the
     result. Often, bits from the middle part of the square are taken. The mixing provided by the
     multiplication ensures that all digits are used in the computation of the hash code.
      Example: Let the keys range between 1 and 32000 and let the TableSize be 2048 = 211 .
      Square the key and select 11 bits from the middle of the result. Note that such bit manipula-
      tions can be done very efficiently using shifting and bitwise and operations.

      H(Key) = (key >> 10) & 0x08FF;

      Will pull out the bits:

      Key              = 123456789abcdefghijklmnopqrstuvw
      Key >> 10        = 0000000000123456789abcdefghijklm
      & 0x08FF         = 000000000000000000000cdefghijklm

      Using r bits produces a table of size 2r .

Folding Here, we break the key into chunks of digits (sometimes reversing alternating chunks)
     and add them up.
      This is often used if the key is too big. Suppose the keys are Social Security numbers, which
      are 9 digits numbers. We can break it up into three pieces, perhaps the 1st digit, the next 4,
      and then the last 4. Then add them together.
      This technique is often used in conjunction with other methods – one might do a folding
      step, followed by division.




                                                   3
CS 385                                Analysis of Algorithms                             Spring 2011



What if the key is a String?
We can use a formula like - Key(xy) = 28 · (int)x + (int)y to convert from alphabetic keys to
ASCII equivalents. (Use 216 for Unicode.) This is often used in combination with folding (for the
rest of the string) and division.
Here is a very simple-minded hash code for strings: Add together the ordinal equivalent of all
letters and take the remainder mod TableSize.
However, this has a potential problem: words with same letters get mapped to same places:

      miles, slime, smile

This would be much improved if you took the letters in pairs before division.
Here is a function which adds up the ASCII codes of letters and then takes the remainder when
divided by TableSize:

hash = 0;
for (int charNo = 0; charNo < word.length(); charNo++)
    hash = hash + (int)(word.charAt(CharNo));
hash = hash % tableSize; /* gives 0 <= hash < tableSize */

This is not going to be a very good hash function, but it’s at least simple.
All Java objects come equipped with a hashCode method (we’ll look at this soon). The hashCode
for Java Strings is defined as specified in its Javadoc:

       s[0]*31ˆ(n-1) + s[1]*31ˆ(n-2) + ... + s[n-1]

using int arithmetic, where s[i] is the ith character of the string, n is the length of the string,
and ˆ indicates exponentiation. (The hash value of the empty string is zero.)
See Example:
˜jteresco/shared/cs385/examples/HashCodes


Handling Collisions
The home address of a key is the location that the hash function returns for that key.
A hash collision occurs when two different keys have the same home location.
There are two main options for getting out of trouble:

   1. Open addressing, which Levitin most confusingly calls closed hashing: if the desired slot is
      full, do something to find an open slot. This must be done in such a way that one can find
      the element again quickly!

                                                  4
CS 385                                Analysis of Algorithms                           Spring 2011



    2. External chaining, which Levitin calls open hashing or separate chaining: make each slot
       capable of holding multiple items and store all objects that with the same home address in
       their desired slot.

For our discussion, we will assume our hash table consists of an array of TableSize entries of
the appropriate type:

     T [] table = new T[TableSize];



Open Addressing
Here, we find the home address of the key (using the hash function). If it happens to be occupied,
we keep trying new slots until an empty slot is located.
There will be three types of entries in the table:

    • an empty slot, represented by null

    • deleted entries - marked by inserting a special “reserved object” (the need for this will soon
      become obvious), and

    • normal entries which contain a reference to an object in the hash table.

This approach requires a rehashing. There are many ways to do this – we will consider a few.
First, linear probing. We simply look for the next available slot in the array beyond the home
address. If we get to the end, we wrap around to the beginning:

Rehash(i) = (i + 1) % TableSize.

This is about as simple as possible. Successive rehashing will eventually try every slot in the table
for an empty slot.
For example, consider a simple hash table of strings, where TableSize = 26, and we choose
a (poor) hash function:
H(key) = the alphabetic position (zero-based) of the first character in the string.
Strings to be input are GA, D, A, G, A2, A1, A3, A4, Z, ZA, E
Here’s what happens with linear rehashing:

0     1     2      3     4     5      6     7        8    9   10          ...         25
A     A2    A1     D     A3    A4     GA    G        ZA   E   ..          ...         Z



                                                     5
CS 385                                Analysis of Algorithms                             Spring 2011



In this example, we see the potential problem with an open addressing approach in the presence of
collisions: clustering.
Primary clustering occurs when more than one key has the same home address. If the same re-
hashing scheme is used for all keys with the same home address then any new key will collide with
all earlier keys with the same home address when the rehashing scheme is employed.
In the example, this happened with A, A2, A1, A3, and A4.
Secondary clustering occurs when a key has a home address which is occupied by an element
which originally got hashed to a different home address, but in rehashing got moved to the address
which is the same as the home address of the new element.
In the example, this happened with E.
When we search for A3, we need to look in 0,1,2,3,4.
What if we search for AB? When do we know we will not find it? We have to continue our search
to the first empty slot! This is not until position 10!
Now let’s delete A2 and then search for A1. If we just put a null in slot 1, we would not find A1
before encountering the null in slot 1.
So we must mark deletions (not just make them empty). These slots can be reused on a new
insertion, but we cannot stop a search when we see a slot marked as deleted. This can be pretty
complicated.
Minor variants of linear rehashing would include adding any number k (which is relatively prime
to TableSize), rather than adding 1.
If the number k is divisible by any factor of TableSize (i.e., k is not relatively prime to
TableSize), then not all entries of the table will be explored when rehashing. For instance,
if TableSize = 100 and k = 50, the linear rehashing function will only explore two slots no
matter how many times it is applied to a starting location.
Often the use of k = 1 works as well as any other choice.
Next, we consider quadratic rehashing.
Here, we try slot (home + j 2 ) % TableSize on the j th rehash.
This variant can help with secondary clustering but not primary clustering.
It can also result in instances where in rehashing you don’t try all possible slots in table.
For example, suppose the TableSize is 5, with slots 0 to 4. If the home address of an element
is 1, then successive rehashings result in 2, 0, 0, 2, 1, 2, 0, 0, ... The slots 3 and 4 will never be
examined to see if they have room. This is clearly a disadvantage.
Our last option for rehashing is called double hashing.
Rather than computing a uniform jump size for successive rehashes, we make it depend on the key
by using a different hashing function to calculate the rehash.


                                                   6
CS 385                                Analysis of Algorithms                               Spring 2011



For example, we might compute

delta(Key) = Key % (TableSize -2) + 1

and add this delta for successive rehash attempts.
If the TableSize is chosen well, this should alleviate both primary and secondary clustering.
For example, suppose the TableSize is 5, and H(n) = n % 5. We calculate delta as above.
So while H(1) = H(6) = H(11) = 1, the jump sizes for the rehash differ since delta(1)
= 2, delta(6) = 1, and delta(11) = 3.

External Chaining
We can eliminate some of our troubles entirely by allowing each slot in the hash table hold as many
items as necessary.
The easiest way to do this is to let each slot be the head of a linked list of elements.
The simplest way to represent this is to allocate a table as an array of references, with each non-
null entry referring to a linked list of elements which got mapped to that slot.
We can organize these lists as ordered, singly or doubly linked, circular, etc.
We can even let them be binary search trees if we want.
Of course with good hashing functions, the size of lists should be short enough so that there is no
need for fancy representations (though one may wish to hold them as ordered lists).
There are some advantages to this over open addressing:

   1. The “deletion problem” doesn’t arise.

   2. The number of elements stored in the table can be larger than the table size.

   3. It avoids all problems of secondary clustering (though primary clustering can still be a prob-
      lem – resulting in long lists in some buckets).



Analysis
We can measure the performance of various hashing schemes with respect to the load factor of the
table.
The load factor, α, of a table is defined as the ratio of the number of elements stored in the table to
the size of the table.
α = 1 means the table is full, α = 0 means it is empty.
Larger values of α lead to more collisions.

                                                   7
CS 385                                Analysis of Algorithms                         Spring 2011



(Note that with external chaining, it is possible to have α > 1).
The table below (from Bailey’s Java Structures) summarizes the performance of our collision res-
olution techniques in searching for an element.
     Strategy          Unsuccessful         Successful
                       1       1        1              1
  Linear probing       2
                        1 + (1−α)2      2
                                              1 + (1−α)
                             1               1        1
  Double hashing            1−α              α
                                                ln (1−α)
                                                    1
 External chaining         α+e −α
                                               1 + 2α
The value in each slot represents the average number of compares necessary for a search. The
first column represents the number of compares if the search is ultimately unsuccessful, while the
second represents the case when the item is found.
The main point to note is that the time for linear rehashing goes up dramatically as α approaches
1.
Double hashing is similar, but not so bad, whereas external chaining does not increase very rapidly
at all (linearly).
In particular, if α = .9, we get:
     Strategy         Unsuccessful Successful
                                       11
  Linear probing          55            2
  Double hashing          10          ∼4
 External chaining         3         1.45
The differences become greater with heavier loading.
The space requirements (in words of memory) are roughly the same for both techniques. If we
have n items stored in a table allocated with TableSize entries:

   • open addressing: TableSize + n· objectsize
   • external chaining: TableSize + n· (objectsize + 1)

With external chaining we can get away with a smaller TableSize, since it responds better to
the resulting higher load factor.
A general rule of thumb might be to use open addressing when we have a small number of elements
and expect a low load factor. We have have a larger number of elements, external chaining can be
more appropriate.


Hashtable Implementations
Hashing is a central enough idea that all Objects in Java come equipped with a method hashCode
that will compute a hash function. Like equals, this is required by Object. We can override it
if we know how we want to have our specific types of objects behave.
Java includes hash tables in java.util.Hashtable.

                                                     8
CS 385                               Analysis of Algorithms                           Spring 2011



It uses external chaining, with the buckets implemented as a linear structure. It allows two param-
eters to be set through arguments to the constructor:

   • initialCapacity - how big is the array of buckets

   • loadFactor - how full can the table get before it automatically grows

Suppose an insertion causes the hash table to exceed its load factor. What does the resize operation
entail? Every item in the hash table must be rehashed! If only a small number of buckets get used,
this could be a problem. We could be resizing when most buckets are still empty. Moreover, the
resize and rehash may or may not help. In fact, shrinking the table might be just as effective as
growing it in some circumstances.
Next, we will consider the hash table implementations in the structure package.

The Hashtable Class
Interesting features:

   • Implementation of open addressing with default size 997.

   • The load factor threshold for a rehashing is fixed at 0.6. Exceeding this threshold will result
     in the table being doubled in size and all entries being rehashed.

   • There is a special RESERVED entry to make sure we can still locate values after we have
     removed items that caused clustering.

   • The protected locate method finds the entry where a given key is stored in the table or
     an empty slot where it should be stored if it is to be added. Note that we need to search
     beyond the first RESERVED location because we’re not sure yet if we might still find the
     actual value. But we do want to use the first reserved value we come across to minimize
     search distance for this key later.

   • Now get and put become simple – most of the work is done in locate.


The ChainedHashtable Class
Interesting features:

   • Implementation of external chaining, default size 997.

   • We create an array of buckets that holds Lists of Associations. SinglyLinkedLists
     are used.




                                                 9
CS 385                               Analysis of Algorithms                          Spring 2011



  • Lists are allocated when we try to locate the bucket for a key, even if we’re not inserting.
    This allows other operations to degenerate into list operations.
    For example, to check if a key is in the table, we locate its bucket and use the list’s contains
    method.

  • We add an entry with the put method.

         1. we locate the correct bucket
         2. we create a new Association to hold the new item
         3. we remove the item (!) from the bucket
         4. we add the item to the bucket (why?)
         5. if we actually removed a value we return the old one
         6. otherwise, we increase the count and return null

  • The get method is also in a sense destructive. Rather than just looking up the value, we
    remove and reinsert the key if it’s found.

  • This reinsertion for put and get means that we will move the values we are using to the front
    of their bucket. Helpful?




                                               10

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

4.4 hashing
4.4 hashing4.4 hashing
4.4 hashing
 
Algorithms notes tutorials duniya
Algorithms notes   tutorials duniyaAlgorithms notes   tutorials duniya
Algorithms notes tutorials duniya
 
Hashing
HashingHashing
Hashing
 
Hashing
HashingHashing
Hashing
 
08 Hash Tables
08 Hash Tables08 Hash Tables
08 Hash Tables
 
Unit 8 searching and hashing
Unit   8 searching and hashingUnit   8 searching and hashing
Unit 8 searching and hashing
 
Hash tables
Hash tablesHash tables
Hash tables
 
Unit viii searching and hashing
Unit   viii searching and hashing Unit   viii searching and hashing
Unit viii searching and hashing
 
Hashing in datastructure
Hashing in datastructureHashing in datastructure
Hashing in datastructure
 
Data Structure and Algorithms Hashing
Data Structure and Algorithms HashingData Structure and Algorithms Hashing
Data Structure and Algorithms Hashing
 
Hashing
HashingHashing
Hashing
 
Hashing 1
Hashing 1Hashing 1
Hashing 1
 
Concept of hashing
Concept of hashingConcept of hashing
Concept of hashing
 
Hashing Techniques in Data Structures Part2
Hashing Techniques in Data Structures Part2Hashing Techniques in Data Structures Part2
Hashing Techniques in Data Structures Part2
 
Hashing
HashingHashing
Hashing
 
Advance algorithm hashing lec II
Advance algorithm hashing lec IIAdvance algorithm hashing lec II
Advance algorithm hashing lec II
 
Hashing PPT
Hashing PPTHashing PPT
Hashing PPT
 
Hash tables
Hash tablesHash tables
Hash tables
 
Application of hashing in better alg design tanmay
Application of hashing in better alg design tanmayApplication of hashing in better alg design tanmay
Application of hashing in better alg design tanmay
 
Hashing Algorithm
Hashing AlgorithmHashing Algorithm
Hashing Algorithm
 

Destacado

Sienna 7 heaps
Sienna 7 heapsSienna 7 heaps
Sienna 7 heapschidabdu
 
Sienna 8 countingsorts
Sienna 8 countingsortsSienna 8 countingsorts
Sienna 8 countingsortschidabdu
 
Sienna 6 bst
Sienna 6 bstSienna 6 bst
Sienna 6 bstchidabdu
 
Sienna 5 decreaseandconquer
Sienna 5 decreaseandconquerSienna 5 decreaseandconquer
Sienna 5 decreaseandconquerchidabdu
 
Sienna 10 dynamic
Sienna 10 dynamicSienna 10 dynamic
Sienna 10 dynamicchidabdu
 
Sienna 12 huffman
Sienna 12 huffmanSienna 12 huffman
Sienna 12 huffmanchidabdu
 
Sienna 11 graphs
Sienna 11 graphsSienna 11 graphs
Sienna 11 graphschidabdu
 
Algorithm chapter 7
Algorithm chapter 7Algorithm chapter 7
Algorithm chapter 7chidabdu
 

Destacado (8)

Sienna 7 heaps
Sienna 7 heapsSienna 7 heaps
Sienna 7 heaps
 
Sienna 8 countingsorts
Sienna 8 countingsortsSienna 8 countingsorts
Sienna 8 countingsorts
 
Sienna 6 bst
Sienna 6 bstSienna 6 bst
Sienna 6 bst
 
Sienna 5 decreaseandconquer
Sienna 5 decreaseandconquerSienna 5 decreaseandconquer
Sienna 5 decreaseandconquer
 
Sienna 10 dynamic
Sienna 10 dynamicSienna 10 dynamic
Sienna 10 dynamic
 
Sienna 12 huffman
Sienna 12 huffmanSienna 12 huffman
Sienna 12 huffman
 
Sienna 11 graphs
Sienna 11 graphsSienna 11 graphs
Sienna 11 graphs
 
Algorithm chapter 7
Algorithm chapter 7Algorithm chapter 7
Algorithm chapter 7
 

Similar a Map and Hashing Data Structures

Presentation.pptx
Presentation.pptxPresentation.pptx
Presentation.pptxAgonySingh
 
presentation on important DAG,TRIE,Hashing.pptx
presentation on important DAG,TRIE,Hashing.pptxpresentation on important DAG,TRIE,Hashing.pptx
presentation on important DAG,TRIE,Hashing.pptxjainaaru59
 
Hashing Technique In Data Structures
Hashing Technique In Data StructuresHashing Technique In Data Structures
Hashing Technique In Data StructuresSHAKOOR AB
 
Hashing.pptx
Hashing.pptxHashing.pptx
Hashing.pptxkratika64
 
11_hashtable-1.ppt. Data structure algorithm
11_hashtable-1.ppt. Data structure algorithm11_hashtable-1.ppt. Data structure algorithm
11_hashtable-1.ppt. Data structure algorithmfarhankhan89766
 
Hashing and File Structures in Data Structure.pdf
Hashing and File Structures in Data Structure.pdfHashing and File Structures in Data Structure.pdf
Hashing and File Structures in Data Structure.pdfJaithoonBibi
 
DS Unit 1.pptx
DS Unit 1.pptxDS Unit 1.pptx
DS Unit 1.pptxchin463670
 
Skiena algorithm 2007 lecture06 sorting
Skiena algorithm 2007 lecture06 sortingSkiena algorithm 2007 lecture06 sorting
Skiena algorithm 2007 lecture06 sortingzukun
 
Faster persistent data structures through hashing
Faster persistent data structures through hashingFaster persistent data structures through hashing
Faster persistent data structures through hashingJohan Tibell
 
Data Structures Design Notes.pdf
Data Structures Design Notes.pdfData Structures Design Notes.pdf
Data Structures Design Notes.pdfAmuthachenthiruK
 
Assignment4 Assignment 4 Hashtables In this assignment we w.pdf
Assignment4 Assignment 4 Hashtables In this assignment we w.pdfAssignment4 Assignment 4 Hashtables In this assignment we w.pdf
Assignment4 Assignment 4 Hashtables In this assignment we w.pdfkksrivastava1
 
Data Structure and Algorithms: What is Hash Table ppt
Data Structure and Algorithms: What is Hash Table pptData Structure and Algorithms: What is Hash Table ppt
Data Structure and Algorithms: What is Hash Table pptJUSTFUN40
 
Lecture14_15_Hashing.pptx
Lecture14_15_Hashing.pptxLecture14_15_Hashing.pptx
Lecture14_15_Hashing.pptxSLekshmiNair
 
DSA UNIT II ARRAY AND LIST - notes
DSA UNIT II ARRAY AND LIST - notesDSA UNIT II ARRAY AND LIST - notes
DSA UNIT II ARRAY AND LIST - notesswathirajstar
 
Python - Data Collection
Python - Data CollectionPython - Data Collection
Python - Data CollectionJoseTanJr
 
Chapter 2.2 data structures
Chapter 2.2 data structuresChapter 2.2 data structures
Chapter 2.2 data structuressshhzap
 

Similar a Map and Hashing Data Structures (20)

Presentation.pptx
Presentation.pptxPresentation.pptx
Presentation.pptx
 
presentation on important DAG,TRIE,Hashing.pptx
presentation on important DAG,TRIE,Hashing.pptxpresentation on important DAG,TRIE,Hashing.pptx
presentation on important DAG,TRIE,Hashing.pptx
 
Hashing .pptx
Hashing .pptxHashing .pptx
Hashing .pptx
 
hashing.pdf
hashing.pdfhashing.pdf
hashing.pdf
 
Hashing Technique In Data Structures
Hashing Technique In Data StructuresHashing Technique In Data Structures
Hashing Technique In Data Structures
 
Hashing.pptx
Hashing.pptxHashing.pptx
Hashing.pptx
 
11_hashtable-1.ppt. Data structure algorithm
11_hashtable-1.ppt. Data structure algorithm11_hashtable-1.ppt. Data structure algorithm
11_hashtable-1.ppt. Data structure algorithm
 
lecture10.ppt
lecture10.pptlecture10.ppt
lecture10.ppt
 
Hashing and File Structures in Data Structure.pdf
Hashing and File Structures in Data Structure.pdfHashing and File Structures in Data Structure.pdf
Hashing and File Structures in Data Structure.pdf
 
DS Unit 1.pptx
DS Unit 1.pptxDS Unit 1.pptx
DS Unit 1.pptx
 
Skiena algorithm 2007 lecture06 sorting
Skiena algorithm 2007 lecture06 sortingSkiena algorithm 2007 lecture06 sorting
Skiena algorithm 2007 lecture06 sorting
 
Ch17 Hashing
Ch17 HashingCh17 Hashing
Ch17 Hashing
 
Faster persistent data structures through hashing
Faster persistent data structures through hashingFaster persistent data structures through hashing
Faster persistent data structures through hashing
 
Data Structures Design Notes.pdf
Data Structures Design Notes.pdfData Structures Design Notes.pdf
Data Structures Design Notes.pdf
 
Assignment4 Assignment 4 Hashtables In this assignment we w.pdf
Assignment4 Assignment 4 Hashtables In this assignment we w.pdfAssignment4 Assignment 4 Hashtables In this assignment we w.pdf
Assignment4 Assignment 4 Hashtables In this assignment we w.pdf
 
Data Structure and Algorithms: What is Hash Table ppt
Data Structure and Algorithms: What is Hash Table pptData Structure and Algorithms: What is Hash Table ppt
Data Structure and Algorithms: What is Hash Table ppt
 
Lecture14_15_Hashing.pptx
Lecture14_15_Hashing.pptxLecture14_15_Hashing.pptx
Lecture14_15_Hashing.pptx
 
DSA UNIT II ARRAY AND LIST - notes
DSA UNIT II ARRAY AND LIST - notesDSA UNIT II ARRAY AND LIST - notes
DSA UNIT II ARRAY AND LIST - notes
 
Python - Data Collection
Python - Data CollectionPython - Data Collection
Python - Data Collection
 
Chapter 2.2 data structures
Chapter 2.2 data structuresChapter 2.2 data structures
Chapter 2.2 data structures
 

Más de chidabdu

Sienna 4 divideandconquer
Sienna 4 divideandconquerSienna 4 divideandconquer
Sienna 4 divideandconquerchidabdu
 
Sienna 3 bruteforce
Sienna 3 bruteforceSienna 3 bruteforce
Sienna 3 bruteforcechidabdu
 
Sienna 2 analysis
Sienna 2 analysisSienna 2 analysis
Sienna 2 analysischidabdu
 
Sienna 1 intro
Sienna 1 introSienna 1 intro
Sienna 1 introchidabdu
 
Sienna 13 limitations
Sienna 13 limitationsSienna 13 limitations
Sienna 13 limitationschidabdu
 
Unit 3 basic processing unit
Unit 3   basic processing unitUnit 3   basic processing unit
Unit 3 basic processing unitchidabdu
 
Unit 5 I/O organization
Unit 5   I/O organizationUnit 5   I/O organization
Unit 5 I/O organizationchidabdu
 
Algorithm chapter 1
Algorithm chapter 1Algorithm chapter 1
Algorithm chapter 1chidabdu
 
Algorithm chapter 11
Algorithm chapter 11Algorithm chapter 11
Algorithm chapter 11chidabdu
 
Algorithm chapter 10
Algorithm chapter 10Algorithm chapter 10
Algorithm chapter 10chidabdu
 
Algorithm chapter 9
Algorithm chapter 9Algorithm chapter 9
Algorithm chapter 9chidabdu
 
Algorithm chapter 8
Algorithm chapter 8Algorithm chapter 8
Algorithm chapter 8chidabdu
 
Algorithm chapter 6
Algorithm chapter 6Algorithm chapter 6
Algorithm chapter 6chidabdu
 
Algorithm chapter 5
Algorithm chapter 5Algorithm chapter 5
Algorithm chapter 5chidabdu
 
Algorithm chapter 2
Algorithm chapter 2Algorithm chapter 2
Algorithm chapter 2chidabdu
 
Algorithm review
Algorithm reviewAlgorithm review
Algorithm reviewchidabdu
 
Unit 2 arithmetics
Unit 2   arithmeticsUnit 2   arithmetics
Unit 2 arithmeticschidabdu
 
Unit 1 basic structure of computers
Unit 1   basic structure of computersUnit 1   basic structure of computers
Unit 1 basic structure of computerschidabdu
 
Unit 4 memory system
Unit 4   memory systemUnit 4   memory system
Unit 4 memory systemchidabdu
 

Más de chidabdu (19)

Sienna 4 divideandconquer
Sienna 4 divideandconquerSienna 4 divideandconquer
Sienna 4 divideandconquer
 
Sienna 3 bruteforce
Sienna 3 bruteforceSienna 3 bruteforce
Sienna 3 bruteforce
 
Sienna 2 analysis
Sienna 2 analysisSienna 2 analysis
Sienna 2 analysis
 
Sienna 1 intro
Sienna 1 introSienna 1 intro
Sienna 1 intro
 
Sienna 13 limitations
Sienna 13 limitationsSienna 13 limitations
Sienna 13 limitations
 
Unit 3 basic processing unit
Unit 3   basic processing unitUnit 3   basic processing unit
Unit 3 basic processing unit
 
Unit 5 I/O organization
Unit 5   I/O organizationUnit 5   I/O organization
Unit 5 I/O organization
 
Algorithm chapter 1
Algorithm chapter 1Algorithm chapter 1
Algorithm chapter 1
 
Algorithm chapter 11
Algorithm chapter 11Algorithm chapter 11
Algorithm chapter 11
 
Algorithm chapter 10
Algorithm chapter 10Algorithm chapter 10
Algorithm chapter 10
 
Algorithm chapter 9
Algorithm chapter 9Algorithm chapter 9
Algorithm chapter 9
 
Algorithm chapter 8
Algorithm chapter 8Algorithm chapter 8
Algorithm chapter 8
 
Algorithm chapter 6
Algorithm chapter 6Algorithm chapter 6
Algorithm chapter 6
 
Algorithm chapter 5
Algorithm chapter 5Algorithm chapter 5
Algorithm chapter 5
 
Algorithm chapter 2
Algorithm chapter 2Algorithm chapter 2
Algorithm chapter 2
 
Algorithm review
Algorithm reviewAlgorithm review
Algorithm review
 
Unit 2 arithmetics
Unit 2   arithmeticsUnit 2   arithmetics
Unit 2 arithmetics
 
Unit 1 basic structure of computers
Unit 1   basic structure of computersUnit 1   basic structure of computers
Unit 1 basic structure of computers
 
Unit 4 memory system
Unit 4   memory systemUnit 4   memory system
Unit 4 memory system
 

Último

JET Technology Labs White Paper for Virtualized Security and Encryption Techn...
JET Technology Labs White Paper for Virtualized Security and Encryption Techn...JET Technology Labs White Paper for Virtualized Security and Encryption Techn...
JET Technology Labs White Paper for Virtualized Security and Encryption Techn...amber724300
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Mark Simos
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentMahmoud Rabie
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesBernd Ruecker
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFMichael Gough
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxAna-Maria Mihalceanu
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
WomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneWomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneUiPathCommunity
 
Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfAarwolf Industries LLC
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...itnewsafrica
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 

Último (20)

JET Technology Labs White Paper for Virtualized Security and Encryption Techn...
JET Technology Labs White Paper for Virtualized Security and Encryption Techn...JET Technology Labs White Paper for Virtualized Security and Encryption Techn...
JET Technology Labs White Paper for Virtualized Security and Encryption Techn...
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
Digital Tools & AI in Career Development
Digital Tools & AI in Career DevelopmentDigital Tools & AI in Career Development
Digital Tools & AI in Career Development
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architectures
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDF
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance Toolbox
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
WomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyoneWomenInAutomation2024: AI and Automation for eveyone
WomenInAutomation2024: AI and Automation for eveyone
 
Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdf
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 

Map and Hashing Data Structures

  • 1. Computer Science 385 Analysis of Algorithms Siena College Spring 2011 Topic Notes: Maps and Hashing Maps/Dictionaries A map or dictionary is a structure used for looking up items via key-value associations. There are many possible implementations of maps. If we think abstractly about a few variants, we can consider their time complexity on common opertions and space complexity. In the table below, n denotes the actual number of elements in the map, and N denote the maximum number of elements it could contain (where that restriction makes sense). Structure Search Insert Delete Space Linked List O(n) O(1) O(n) O(n) Sorted Array O(log n) O(n) O(n) O(N ) Balanced BST O(log n) O(log n) O(log n) O(n) Array[KeyRange] of EltType O(1) O(1) O(1) KeyRange That last line is very interesting. If we know the range of keys (suppose they’re all integers between 0 and KeyRange-1) we can use the key as the index directly into an array. And have constant time access! Hashing The map implementation of an array with keys as the subscripts and values as contents makes a lot of sense. For example, we could store information about members of a team whose uniform numbers are all within a given range by storing each player’s information in the array location indexed by their uniform number. If some uniform numbers are unused, we’ll have some empty slots, but it gives us constant time access to any player’s information as long as we know the uniform number. However, there are some important restrictions on the use of this representation. This implementation assumes that the data has a key which is of a type that can be used as an array subscript (some enumerated type in Pascal, integers in C/C++/Java), which is not always the case. What if we’re trying to store strings or doubles or something more complex? Moreover, the size requirements for this implementation could be prohibitive. Suppose we wanted to store 2000 student records indexed by social security number or a Siena ID number. We would need an array with 1 billion elements! In cases like this, where most of the entries will be empty, we would like to use a smaller array, but come up with a good way to map our elements into the array entries.
  • 2. CS 385 Analysis of Algorithms Spring 2011 Suppose we have a lot of data elements of type E and a set of indices in which we can store data elements. We would like to obtain a function H: E → index, which has the properties: 1. H(elt) can be computed quickly 2. If elt1 = elt2 then H(elt1) = H(elt2). (i.e., H is a one-to-one function) This is called a perfect hashing function. Unfortunately, they are difficult to find unless you know all possible entries to the table in advance. This is rarely the case. Instead we use something that behaves well, but not necessarily perfectly. The goal is to scatter elements through the array randomly so that they won’t attempt to be stored in the same location, or “bump into” each other. So we will define a hash function H: Keys → Addresses (or array indices), and we will call H(element.key) the home address of element. Assuming no two distinct elements wind up mapping to the same location, we can now add, search for, and remove them in O(1) time. The one thing we can no longer do efficiently that we could have done with some of the other maps is to list them in order. Since the function is not guaranteed to be one-to-one, we can’t guarantee that no two distinct elements map to the same home address. This suggests two problems to consider: 1. How to choose a good hashing function? 2. How to resolve the situation where two different elements are mapped to same home address? Selecting Hashing Functions The following quote should be memorized by anyone trying to design a hashing function: “A given hash function must always be tried on real data in order to find out whether it is effective or not.” Data which contains unexpected and unfortunate regularities can completely destroy the usefulness of any hashing function! We will start by considering hashing functions for integer-valued keys. Digit selection As the name suggests, this involved choosing digits from certain positions of key (e.g., last 3 digits of a SSN). Unfortunately it is easy to make a very unfortunate choice. We would need careful analysis of the expected keys to see which digits will work best. Likely patterns can cause problems. 2
  • 3. CS 385 Analysis of Algorithms Spring 2011 We want to make sure that the expected keys are at least capable of generating all possible table positions. For example the first digits of SSN’s reflect the region in which they were assigned and hence usually would work poorly as a hashing function. Even worse, what about the first few digits of a Siena ID number? Division Here, we let H(key) = key mod TableSize This is very efficient and often gives good results if the TableSize is chosen properly. If it is chosen poorly then you can get very poor results. Consider the case where TableSize = 28 = 256 and the keys are computed from ASCII equivalent of two letter pairs, i.e. Key(xy) = 28 · ASCII(x) + ASCII(y), then all pairs ending with the same letter get mapped to same address. Similar problems arise with any power of 2. It is usually safest to choose the TableSize to be a prime number in the range of your desired table size. The default size in the structure package’s hash table is 997. Mid-Square Here, the approach is to square the key and then select a subset of the bits from the result. Often, bits from the middle part of the square are taken. The mixing provided by the multiplication ensures that all digits are used in the computation of the hash code. Example: Let the keys range between 1 and 32000 and let the TableSize be 2048 = 211 . Square the key and select 11 bits from the middle of the result. Note that such bit manipula- tions can be done very efficiently using shifting and bitwise and operations. H(Key) = (key >> 10) & 0x08FF; Will pull out the bits: Key = 123456789abcdefghijklmnopqrstuvw Key >> 10 = 0000000000123456789abcdefghijklm & 0x08FF = 000000000000000000000cdefghijklm Using r bits produces a table of size 2r . Folding Here, we break the key into chunks of digits (sometimes reversing alternating chunks) and add them up. This is often used if the key is too big. Suppose the keys are Social Security numbers, which are 9 digits numbers. We can break it up into three pieces, perhaps the 1st digit, the next 4, and then the last 4. Then add them together. This technique is often used in conjunction with other methods – one might do a folding step, followed by division. 3
  • 4. CS 385 Analysis of Algorithms Spring 2011 What if the key is a String? We can use a formula like - Key(xy) = 28 · (int)x + (int)y to convert from alphabetic keys to ASCII equivalents. (Use 216 for Unicode.) This is often used in combination with folding (for the rest of the string) and division. Here is a very simple-minded hash code for strings: Add together the ordinal equivalent of all letters and take the remainder mod TableSize. However, this has a potential problem: words with same letters get mapped to same places: miles, slime, smile This would be much improved if you took the letters in pairs before division. Here is a function which adds up the ASCII codes of letters and then takes the remainder when divided by TableSize: hash = 0; for (int charNo = 0; charNo < word.length(); charNo++) hash = hash + (int)(word.charAt(CharNo)); hash = hash % tableSize; /* gives 0 <= hash < tableSize */ This is not going to be a very good hash function, but it’s at least simple. All Java objects come equipped with a hashCode method (we’ll look at this soon). The hashCode for Java Strings is defined as specified in its Javadoc: s[0]*31ˆ(n-1) + s[1]*31ˆ(n-2) + ... + s[n-1] using int arithmetic, where s[i] is the ith character of the string, n is the length of the string, and ˆ indicates exponentiation. (The hash value of the empty string is zero.) See Example: ˜jteresco/shared/cs385/examples/HashCodes Handling Collisions The home address of a key is the location that the hash function returns for that key. A hash collision occurs when two different keys have the same home location. There are two main options for getting out of trouble: 1. Open addressing, which Levitin most confusingly calls closed hashing: if the desired slot is full, do something to find an open slot. This must be done in such a way that one can find the element again quickly! 4
  • 5. CS 385 Analysis of Algorithms Spring 2011 2. External chaining, which Levitin calls open hashing or separate chaining: make each slot capable of holding multiple items and store all objects that with the same home address in their desired slot. For our discussion, we will assume our hash table consists of an array of TableSize entries of the appropriate type: T [] table = new T[TableSize]; Open Addressing Here, we find the home address of the key (using the hash function). If it happens to be occupied, we keep trying new slots until an empty slot is located. There will be three types of entries in the table: • an empty slot, represented by null • deleted entries - marked by inserting a special “reserved object” (the need for this will soon become obvious), and • normal entries which contain a reference to an object in the hash table. This approach requires a rehashing. There are many ways to do this – we will consider a few. First, linear probing. We simply look for the next available slot in the array beyond the home address. If we get to the end, we wrap around to the beginning: Rehash(i) = (i + 1) % TableSize. This is about as simple as possible. Successive rehashing will eventually try every slot in the table for an empty slot. For example, consider a simple hash table of strings, where TableSize = 26, and we choose a (poor) hash function: H(key) = the alphabetic position (zero-based) of the first character in the string. Strings to be input are GA, D, A, G, A2, A1, A3, A4, Z, ZA, E Here’s what happens with linear rehashing: 0 1 2 3 4 5 6 7 8 9 10 ... 25 A A2 A1 D A3 A4 GA G ZA E .. ... Z 5
  • 6. CS 385 Analysis of Algorithms Spring 2011 In this example, we see the potential problem with an open addressing approach in the presence of collisions: clustering. Primary clustering occurs when more than one key has the same home address. If the same re- hashing scheme is used for all keys with the same home address then any new key will collide with all earlier keys with the same home address when the rehashing scheme is employed. In the example, this happened with A, A2, A1, A3, and A4. Secondary clustering occurs when a key has a home address which is occupied by an element which originally got hashed to a different home address, but in rehashing got moved to the address which is the same as the home address of the new element. In the example, this happened with E. When we search for A3, we need to look in 0,1,2,3,4. What if we search for AB? When do we know we will not find it? We have to continue our search to the first empty slot! This is not until position 10! Now let’s delete A2 and then search for A1. If we just put a null in slot 1, we would not find A1 before encountering the null in slot 1. So we must mark deletions (not just make them empty). These slots can be reused on a new insertion, but we cannot stop a search when we see a slot marked as deleted. This can be pretty complicated. Minor variants of linear rehashing would include adding any number k (which is relatively prime to TableSize), rather than adding 1. If the number k is divisible by any factor of TableSize (i.e., k is not relatively prime to TableSize), then not all entries of the table will be explored when rehashing. For instance, if TableSize = 100 and k = 50, the linear rehashing function will only explore two slots no matter how many times it is applied to a starting location. Often the use of k = 1 works as well as any other choice. Next, we consider quadratic rehashing. Here, we try slot (home + j 2 ) % TableSize on the j th rehash. This variant can help with secondary clustering but not primary clustering. It can also result in instances where in rehashing you don’t try all possible slots in table. For example, suppose the TableSize is 5, with slots 0 to 4. If the home address of an element is 1, then successive rehashings result in 2, 0, 0, 2, 1, 2, 0, 0, ... The slots 3 and 4 will never be examined to see if they have room. This is clearly a disadvantage. Our last option for rehashing is called double hashing. Rather than computing a uniform jump size for successive rehashes, we make it depend on the key by using a different hashing function to calculate the rehash. 6
  • 7. CS 385 Analysis of Algorithms Spring 2011 For example, we might compute delta(Key) = Key % (TableSize -2) + 1 and add this delta for successive rehash attempts. If the TableSize is chosen well, this should alleviate both primary and secondary clustering. For example, suppose the TableSize is 5, and H(n) = n % 5. We calculate delta as above. So while H(1) = H(6) = H(11) = 1, the jump sizes for the rehash differ since delta(1) = 2, delta(6) = 1, and delta(11) = 3. External Chaining We can eliminate some of our troubles entirely by allowing each slot in the hash table hold as many items as necessary. The easiest way to do this is to let each slot be the head of a linked list of elements. The simplest way to represent this is to allocate a table as an array of references, with each non- null entry referring to a linked list of elements which got mapped to that slot. We can organize these lists as ordered, singly or doubly linked, circular, etc. We can even let them be binary search trees if we want. Of course with good hashing functions, the size of lists should be short enough so that there is no need for fancy representations (though one may wish to hold them as ordered lists). There are some advantages to this over open addressing: 1. The “deletion problem” doesn’t arise. 2. The number of elements stored in the table can be larger than the table size. 3. It avoids all problems of secondary clustering (though primary clustering can still be a prob- lem – resulting in long lists in some buckets). Analysis We can measure the performance of various hashing schemes with respect to the load factor of the table. The load factor, α, of a table is defined as the ratio of the number of elements stored in the table to the size of the table. α = 1 means the table is full, α = 0 means it is empty. Larger values of α lead to more collisions. 7
  • 8. CS 385 Analysis of Algorithms Spring 2011 (Note that with external chaining, it is possible to have α > 1). The table below (from Bailey’s Java Structures) summarizes the performance of our collision res- olution techniques in searching for an element. Strategy Unsuccessful Successful 1 1 1 1 Linear probing 2 1 + (1−α)2 2 1 + (1−α) 1 1 1 Double hashing 1−α α ln (1−α) 1 External chaining α+e −α 1 + 2α The value in each slot represents the average number of compares necessary for a search. The first column represents the number of compares if the search is ultimately unsuccessful, while the second represents the case when the item is found. The main point to note is that the time for linear rehashing goes up dramatically as α approaches 1. Double hashing is similar, but not so bad, whereas external chaining does not increase very rapidly at all (linearly). In particular, if α = .9, we get: Strategy Unsuccessful Successful 11 Linear probing 55 2 Double hashing 10 ∼4 External chaining 3 1.45 The differences become greater with heavier loading. The space requirements (in words of memory) are roughly the same for both techniques. If we have n items stored in a table allocated with TableSize entries: • open addressing: TableSize + n· objectsize • external chaining: TableSize + n· (objectsize + 1) With external chaining we can get away with a smaller TableSize, since it responds better to the resulting higher load factor. A general rule of thumb might be to use open addressing when we have a small number of elements and expect a low load factor. We have have a larger number of elements, external chaining can be more appropriate. Hashtable Implementations Hashing is a central enough idea that all Objects in Java come equipped with a method hashCode that will compute a hash function. Like equals, this is required by Object. We can override it if we know how we want to have our specific types of objects behave. Java includes hash tables in java.util.Hashtable. 8
  • 9. CS 385 Analysis of Algorithms Spring 2011 It uses external chaining, with the buckets implemented as a linear structure. It allows two param- eters to be set through arguments to the constructor: • initialCapacity - how big is the array of buckets • loadFactor - how full can the table get before it automatically grows Suppose an insertion causes the hash table to exceed its load factor. What does the resize operation entail? Every item in the hash table must be rehashed! If only a small number of buckets get used, this could be a problem. We could be resizing when most buckets are still empty. Moreover, the resize and rehash may or may not help. In fact, shrinking the table might be just as effective as growing it in some circumstances. Next, we will consider the hash table implementations in the structure package. The Hashtable Class Interesting features: • Implementation of open addressing with default size 997. • The load factor threshold for a rehashing is fixed at 0.6. Exceeding this threshold will result in the table being doubled in size and all entries being rehashed. • There is a special RESERVED entry to make sure we can still locate values after we have removed items that caused clustering. • The protected locate method finds the entry where a given key is stored in the table or an empty slot where it should be stored if it is to be added. Note that we need to search beyond the first RESERVED location because we’re not sure yet if we might still find the actual value. But we do want to use the first reserved value we come across to minimize search distance for this key later. • Now get and put become simple – most of the work is done in locate. The ChainedHashtable Class Interesting features: • Implementation of external chaining, default size 997. • We create an array of buckets that holds Lists of Associations. SinglyLinkedLists are used. 9
  • 10. CS 385 Analysis of Algorithms Spring 2011 • Lists are allocated when we try to locate the bucket for a key, even if we’re not inserting. This allows other operations to degenerate into list operations. For example, to check if a key is in the table, we locate its bucket and use the list’s contains method. • We add an entry with the put method. 1. we locate the correct bucket 2. we create a new Association to hold the new item 3. we remove the item (!) from the bucket 4. we add the item to the bucket (why?) 5. if we actually removed a value we return the old one 6. otherwise, we increase the count and return null • The get method is also in a sense destructive. Rather than just looking up the value, we remove and reinsert the key if it’s found. • This reinsertion for put and get means that we will move the values we are using to the front of their bucket. Helpful? 10