Hash Tables1 Part E Hash Tables   0 1 2 3 4 451-229-0004 981-101-0002 025-612-0001.

Slides:



Advertisements
Similar presentations
© 2004 Goodrich, Tamassia Hash Tables
Advertisements

© 2004 Goodrich, Tamassia Hash Tables
Dictionaries 4/1/2017 2:36 PM Hash Tables  …
CSCE 3400 Data Structures & Algorithm Analysis
© 2004 Goodrich, Tamassia Hash Tables1  
Chapter 9: Maps, Dictionaries, Hashing Nancy Amato Parasol Lab, Dept. CSE, Texas A&M University Acknowledgement: These slides are adapted from slides provided.
Maps. Hash Tables. Dictionaries. 2 CPSC 3200 University of Tennessee at Chattanooga – Summer 2013 © 2010 Goodrich, Tamassia.
Data Structures Lecture 12 Fang Yu Department of Management Information Systems National Chengchi University Fall 2010.
Log Files. O(n) Data Structure Exercises 16.1.
Maps, Dictionaries, Hashtables
CSC401 – Analysis of Algorithms Lecture Notes 5 Heaps and Hash Tables Objectives: Introduce Heaps, Heap-sorting, and Heap- construction Analyze the performance.
Dictionaries and Hash Tables1  
1 Chapter 9 Maps and Dictionaries. 2 A basic problem We have to store some records and perform the following: add new record add new record delete record.
Hash Tables1 Part E Hash Tables  
Hash Tables1 Part E Hash Tables  
Tirgul 7. Find an efficient implementation of a dynamic collection of elements with unique keys Supported Operations: Insert, Search and Delete. The keys.
COMP 171 Data Structures and Algorithms Tutorial 10 Hash Tables.
Hashing General idea: Get a large array
Data Structures Using C++ 2E Chapter 9 Searching and Hashing Algorithms.
Dictionaries 4/17/2017 3:23 PM Hash Tables  
Introducing Hashing Chapter 21 Copyright ©2012 by Pearson Education, Inc. All rights reserved.
Maps, Dictionaries, Hashing
1. 2 Problem RT&T is a large phone company, and they want to provide enhanced caller ID capability: –given a phone number, return the caller’s name –phone.
CS 221 Analysis of Algorithms Data Structures Dictionaries, Hash Tables, Ordered Dictionary and Binary Search Trees.
CS212: DATA STRUCTURES Lecture 10:Hashing 1. Outline 2  Map Abstract Data type  Map Abstract Data type methods  What is hash  Hash tables  Bucket.
1 HashTable. 2 Dictionary A collection of data that is accessed by “key” values –The keys may be ordered or unordered –Multiple key values may/may-not.
Hash Tables1   © 2010 Goodrich, Tamassia.
Dictionaries and Hash Tables1 Hash Tables  
David Luebke 1 10/25/2015 CS 332: Algorithms Skip Lists Hash Tables.
1 HASHING Course teacher: Moona Kanwal. 2 Hashing Mathematical concept –To define any number as set of numbers in given interval –To cut down part of.
Hashing Hashing is another method for sorting and searching data.
© 2004 Goodrich, Tamassia Hash Tables1  
David Luebke 1 11/26/2015 Hash Tables. David Luebke 2 11/26/2015 Hash Tables ● Motivation: Dictionaries ■ Set of key/value pairs ■ We care about search,
Lecture 12COMPSCI.220.FS.T Symbol Table and Hashing A ( symbol) table is a set of table entries, ( K,V) Each entry contains: –a unique key, K,
1 Hashing - Introduction Dictionary = a dynamic set that supports the operations INSERT, DELETE, SEARCH Dictionary = a dynamic set that supports the operations.
Hashtables. An Abstract data type that supports the following operations: –Insert –Find –Remove Search trees can be used for the same operations but require.
CHAPTER 9 HASH TABLES, MAPS, AND SKIP LISTS ACKNOWLEDGEMENT: THESE SLIDES ARE ADAPTED FROM SLIDES PROVIDED WITH DATA STRUCTURES AND ALGORITHMS IN C++,
1 the hash table. hash table A hash table consists of two major components …
CS6045: Advanced Algorithms Data Structures. Hashing Tables Motivation: symbol tables –A compiler uses a symbol table to relate symbols to associated.
Prof. Amr Goneid, AUC1 CSCI 210 Data Structures and Algorithms Prof. Amr Goneid AUC Part 5. Dictionaries(2): Hash Tables.
Lecture14: Hashing Bohyung Han CSE, POSTECH CSED233: Data Structures (2014F)
Hash Maps Rem Collier Room A1.02 School of Computer Science and Informatics University College Dublin, Ireland.
Algorithms Design Fall 2016 Week 6 Hash Collusion Algorithms and Binary Search Trees.
Hash Tables 1/28/2018 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M.
Hashing (part 2) CSE 2011 Winter March 2018.
CSCI 210 Data Structures and Algorithms
Hashing CSE 2011 Winter July 2018.
Dictionaries and Hash Tables
Dictionaries Dictionaries 07/27/16 16:46 07/27/16 16:46 Hash Tables 
© 2013 Goodrich, Tamassia, Goldwasser
Dictionaries 9/14/ :35 AM Hash Tables   4
Hash Tables 3/25/15 Presentation for use with the textbook Data Structures and Algorithms in Java, 6th edition, by M. T. Goodrich, R. Tamassia, and M.
Searching.
Data Structures Maps and Hash.
Hash Tables 11/22/2018 3:15 AM Hash Tables  1 2  3  4
Dictionaries 11/23/2018 5:34 PM Hash Tables   Hash Tables.
Dictionaries and Hash Tables
Copyright © Aiman Hanna All rights reserved
Hash Tables   Maps Dictionaries 12/7/2018 5:58 AM Hash Tables  
CH 9.2 : Hash Tables Acknowledgement: These slides are adapted from slides provided with Data Structures and Algorithms in C++, Goodrich, Tamassia and.
Dictionaries and Hash Tables
Dictionaries 1/17/2019 7:55 AM Hash Tables   4
CH 9.2 : Hash Tables Acknowledgement: These slides are adapted from slides provided with Data Structures and Algorithms in C++, Goodrich, Tamassia and.
Hash Tables Computer Science and Engineering
Hash Tables Computer Science and Engineering
Hash Tables Computer Science and Engineering
Dictionaries 4/5/2019 1:49 AM Hash Tables  
CS210- Lecture 17 July 12, 2005 Agenda Collision Handling
CS210- Lecture 16 July 11, 2005 Agenda Maps and Dictionaries Map ADT
Dictionaries and Hash Tables
Presentation transcript:

Hash Tables1 Part E Hash Tables  

Hash Tables2 Motivations of Hash Tables We have n items, each contains a key and value (k, value). The key uniquely determines the item. Each key could be anything, e.g., a number in [0, 2 32 ], a string of length 32, etc. How to store the n items such that given the key k, we can find the position of the item with key= k in O(1) time. Another constraint: space required is O(n). Linked list? Space O(n) and Time O(n). Array? Time O(1) and space: too big, e.g.,  If the key is an integer in [0, 2 32 ], then the space required is  if the key is a string of length 30, the space required is Hash Table: space O(n) and time O(1).

Hash Tables3 Basic ideas of Hash Tables A hash function h maps keys of a given type with a wide range to integers in a fixed interval [0, N  1], where N is the size of the hash table such that if k≠k then h(k)≠h(k’) ….. (1). Problem: It is hard to design a function h such that (1) holds. What we can do: We can design a function h so that with high chance, (1) holds. i.e., (1) may not always holds, but (1) holds for most of the n keys.

Hash Tables4 Hash Functions A hash function h maps keys of a given type to integers in a fixed interval [0, N  1] Example: h(x)  x mod N is a hash function for integer keys The integer h(x) is called the hash value of key x A hash table for a given key type consists of Hash function h Array (called table) of size N the goal is to store item (k, o) at index i  h(k)

Hash Tables5 Example We design a hash table storing entries as (HKID, Name), where HKID is a nine-digit positive integer Our hash table uses an array of size N  10,000 and the hash function h(x)  last four digits of x Need a method to handle collision.     …

Hash Tables6 Example We design a hash table storing entries as (studentID, Name), where studentID is a eight-digit positive integer Our hash table uses an array of size N  100 for our class of n= 49 students and the hash function h(x)  last two digits of x Need a method to handle collision.     … 86xxxx04 50xxxx02 51xxxx98 50xxxx01 51xxxx02 Task: to store the n items such that given the key k, we can find the position of the item with key= k in O(1) time. As long as the chance for collision is low, we can achieve this goal. Setting N=1000 and looking at the last three digits will reduce the chance of collision.

Hash Tables7 How to design a Hash Function A hash function is usually specified as the composition of two functions: Hash code: h 1 : keys  integers key could be anything, e.g., your name, an object, etc. Compression function: h 2 : integers  [0, N  1] The size of the array N cannot be too large in order to save space. Trade-off between space and time. The hash code is applied first, and the compression function is applied next on the result, i.e., h(x) = h 2 (h 1 (x)) The goal of the hash function is to “disperse” the keys in an apparently random way so that in most cases (1) holds.

Hash Tables8 Integer cast: We reinterpret the bits of the key as an integer Example: characters is mapped to its ASCII code. A=65= , B=66= , a=97, b=98,,=44,.=46. Suitable for keys of length less than or equal to the number of bits of the integer type (e.g., byte, short, int and float in Java)

Hash Tables9 Component sum: We partition the bits of the key into components of fixed length (e.g., 16 or 32 bits) a 0 a 1 … a n  1 and we sum the components (ignoring overflows) a 0  a 1  a 2  … +a n  1 Example 1: AB= h(AB)= Example 2: h( )= (ignore overflows) Suitable for numeric keys of fixed length greater than or equal to the number of bits of the integer type (e.g., long and double in Java)

Hash Tables10 Compression Functions Division: h 2 (y)  y mod N The size N of the hash table is usually chosen to be a prime The reason has to do with number theory and is beyond the scope of this course Example: keys: {200, 205, 210, 215, 220, 600}. If N=100, 200 and 600 have the same code, i.e., 0. It is better to choose N=101.

Hash Tables11 Compression Functions Multiply, Add and Divide (MAD): h 2 (y)  (ay  b) mod N a >0 and b>0 are nonnegative integers such that a mod N  0 and N is a prime number. Example: Keys={200, 205, 210, 215, 220, 600}. N=101. a=3 and b=7. h(200)=(600+7) mod 101 = 607 mod 101=1. H(205)=(615+7) mod 101 = 622 mod 101=16. h(210)=(630+7) mod 101 = 637 mod 101=31. h(215)=(645+7) mod 101 = 652 mod 101=46. h(220)=(660+7) mod 101 = 667 mod 101=61. H(600)=( ) mod 101=3607 mod 101=72.

Hash Tables12 Collision Handling Collisions occur when different elements are mapped to the same cell Separate Chaining: let each cell in the table point to a linked list of entries that map there Separate chaining is simple, but requires additional memory outside the table   

Hash Tables13 Open Addressing the colliding item is placed in a different cell of the table Load factor: n/N, where n is the number of items to store and N the size of the hash table. n/N≤1. To get a reasonable performance, n/N<0.5.

Hash Tables14 Linear Probing Linear probing handles collisions by placing the colliding item in the next (circularly) available table cell Each table cell inspected is referred to as a “probe” Colliding items lump together, causing future collisions to cause a longer sequence of probes Example: h(x)  x mod 13 Insert keys 18, 41, 22, 44, 59, 32, 31, 73, in this order

Hash Tables15 Search with Linear Probing Consider a hash table A that uses linear probing get (k) We start at cell h(k) We probe consecutive locations until one of the following occurs  An item with key k is found, or  An empty cell is found, or  N cells have been unsuccessfully probed To ensure the efficiency, if k is not in the table, we want to find an empty cell as soon as possible. The load factor can NOT be close to 1. Algorithm get(k) i  h(k) p  0 repeat c  A[i] if c   return null else if c.key ()  k return c.element() else i  (i  1) mod N p  p  1 until p  N return null

Hash Tables16 Linear Probing Search for key=20. h(20)=20 mod 13 =7. Go through rank 8, 9, …, 12, 0. Search for key=15 h(15)=15 mod 13=2. Go through rank 2, 3 and return null. Example: h(x)  x mod 13 Insert keys 18, 41, 22, 44, 59, 32, 31, 73, 12, 20 in this order

Hash Tables17 Updates with Linear Probing To handle insertions and deletions, we introduce a special object, called AVAILABLE, which replaces deleted elements remove (k) We search for an entry with key k If such an entry (k, o) is found, we replace it with the special item AVAILABLE and we return element o Else, we return null Have to modify other methods to skip available cells. put (k, o) We throw an exception if the table is full We start at cell h(k) We probe consecutive cells until one of the following occurs  A cell i is found that is either empty or stores AVAILABLE, or  N cells have been unsuccessfully probed We store entry (k, o) in cell i

Hash Tables18 Updates with Linear Probing Algorithm put(k,o) i  h(k) p  0 repeat c  A[i] if c   return A[i].key()=k and A[i].element=0 else if c.key ()  k A[i].element=o else i  (i  1) mod N p  p  1 until p  N if p=N+1 the array is full. Example: h(x) = x mod 13 Insert keys 18, 41, 22, 44, 59, 32, 31, 73, 20, 12 in this order Ti insert 12, we look at rank 12 and then rank

Hash Tables19 A complete example Example: h(x) = x mod 13 Insert keys 18, 41, 22, 44, 59, 32, 31, 73, 20, 12 in this order Remove(): 20, 12 Get(11): check the cell after AVAILABLE cells. Insert keys 10, is at rank 12 and 11 is at rank 0. The Available cells are hard to deal with. Separate Chaining approach is simpler A A

Hash Tables20 Performance of Hashing In the worst case, searches, insertions and removals on a hash table take O(n) time The worst case occurs when all the keys inserted into the map collide The load factor   n  N affects the performance of a hash table Assuming that the hash values are like random numbers, it can be shown that the expected number of probes for an insertion with open addressing is 1  (1   ) The expected running time of all the operations in a hash table is O(1) In practice, hashing is very fast provided the load factor is not close to 100% Applications of hash tables: small databases compilers browser caches