Dictionaries and Hash Tables

Similar documents
Hash Tables Hash Tables Goodrich, Tamassia

Elementary Data Structures 2

Chapter 9: Maps, Dictionaries, Hashing

This lecture. Iterators ( 5.4) Maps. Maps. The Map ADT ( 8.1) Comparison to java.util.map

Dictionaries-Hashing. Textbook: Dictionaries ( 8.1) Hash Tables ( 8.2)

Data Structures Lecture 12

Maps, Hash Tables and Dictionaries. Chapter 10.1, 10.2, 10.3, 10.5

HASH TABLES. Goal is to store elements k,v at index i = h k

Priority Queue Sorting

CSED233: Data Structures (2017F) Lecture10:Hash Tables, Maps, and Skip Lists

CHAPTER 9 HASH TABLES, MAPS, AND SKIP LISTS

CS2210 Data Structures and Algorithms

Hash Tables. Johns Hopkins Department of Computer Science Course : Data Structures, Professor: Greg Hager

Hashing. Manolis Koubarakis. Data Structures and Programming Techniques

Hashing. Hashing Procedures

Understand how to deal with collisions

Introducing Hashing. Chapter 21. Copyright 2012 by Pearson Education, Inc. All rights reserved

Hash Tables. Gunnar Gotshalks. Maps 1

CS 350 : Data Structures Hash Tables

General Idea. Key could be an integer, a string, etc e.g. a name or Id that is a part of a large employee structure

HASH TABLES. Hash Tables Page 1

Introduction to Hashing

Introduction hashing: a technique used for storing and retrieving information as quickly as possible.

Hashing. Dr. Ronaldo Menezes Hugo Serrano. Ronaldo Menezes, Florida Tech

CSE 214 Computer Science II Searching

Dictionaries. 2/17/2006 Dictionaries 1

AAL 217: DATA STRUCTURES

Dictionary. Dictionary. stores key-value pairs. Find(k) Insert(k, v) Delete(k) List O(n) O(1) O(n) Sorted Array O(log n) O(n) O(n)

Lecture 16. Reading: Weiss Ch. 5 CSE 100, UCSD: LEC 16. Page 1 of 40

Algorithms and Data Structures

Hash Tables. Hashing Probing Separate Chaining Hash Function

Hash Tables. Hash functions Open addressing. November 24, 2017 Hassan Khosravi / Geoffrey Tien 1

Hashing Techniques. Material based on slides by George Bebis

COMP171. Hashing.

CSE100. Advanced Data Structures. Lecture 21. (Based on Paul Kube course materials)

CMSC 341 Lecture 16/17 Hashing, Parts 1 & 2

Open Addressing: Linear Probing (cont.)

Hash Table. A hash function h maps keys of a given type into integers in a fixed interval [0,m-1]

CS2 Algorithms and Data Structures Note 4

Hash Tables Outline. Definition Hash functions Open hashing Closed hashing. Efficiency. collision resolution techniques. EECS 268 Programming II 1

Unit #5: Hash Functions and the Pigeonhole Principle

Hashing. October 19, CMPE 250 Hashing October 19, / 25

5. Hashing. 5.1 General Idea. 5.2 Hash Function. 5.3 Separate Chaining. 5.4 Open Addressing. 5.5 Rehashing. 5.6 Extendible Hashing. 5.

CMSC 341 Hashing (Continued) Based on slides from previous iterations of this course

Lecture 7: Efficient Collections via Hashing

csci 210: Data Structures Maps and Hash Tables

HashTable CISC5835, Computer Algorithms CIS, Fordham Univ. Instructor: X. Zhang Fall 2018

Hashing. 1. Introduction. 2. Direct-address tables. CmSc 250 Introduction to Algorithms

Hashing (Κατακερματισμός)

Tables. The Table ADT is used when information needs to be stored and acessed via a key usually, but not always, a string. For example: Dictionaries

TABLES AND HASHING. Chapter 13

Hashing Algorithms. Hash functions Separate Chaining Linear Probing Double Hashing

Practical Session 8- Hash Tables

Acknowledgement HashTable CISC4080, Computer Algorithms CIS, Fordham Univ.

Lecture 4. Hashing Methods

Cpt S 223. School of EECS, WSU

Hash Table and Hashing

CS 241 Analysis of Algorithms

Hash Tables. Hash functions Open addressing. March 07, 2018 Cinda Heeren / Geoffrey Tien 1

Algorithms with numbers (2) CISC4080, Computer Algorithms CIS, Fordham Univ.! Instructor: X. Zhang Spring 2017

Algorithms with numbers (2) CISC4080, Computer Algorithms CIS, Fordham Univ. Acknowledgement. Support for Dictionary

CSE 332: Data Structures & Parallelism Lecture 10:Hashing. Ruth Anderson Autumn 2018

DS ,21. L11-12: Hashmap

COSC160: Data Structures Hashing Structures. Jeremy Bolton, PhD Assistant Teaching Professor

Hashing. CptS 223 Advanced Data Structures. Larry Holder School of Electrical Engineering and Computer Science Washington State University

! A Hash Table is used to implement a set, ! The table uses a function that maps an. ! The function is called a hash function.

HASH TABLES.

Hash[ string key ] ==> integer value

Introduction. hashing performs basic operations, such as insertion, better than other ADTs we ve seen so far

Dictionaries (Maps) Hash tables. ADT Dictionary or Map. n INSERT: inserts a new element, associated to unique value of a field (key)

Worst-case running time for RANDOMIZED-SELECT

HO #13 Fall 2015 Gary Chan. Hashing (N:12)

Fundamental Algorithms

1 / 22. Inf 2B: Hash Tables. Lecture 4 of ADS thread. Kyriakos Kalorkoti. School of Informatics University of Edinburgh

Hash table basics mod 83 ate. ate

SFU CMPT Lecture: Week 8

Hashing. 5/1/2006 Algorithm analysis and Design CS 007 BE CS 5th Semester 2

Table ADT and Sorting. Algorithm topics continuing (or reviewing?) CS 24 curriculum

Hashing. Yufei Tao. Department of Computer Science and Engineering Chinese University of Hong Kong

Module 5: Hashing. CS Data Structures and Data Management. Reza Dorrigiv, Daniel Roche. School of Computer Science, University of Waterloo

Lecture 11: Perfect Hashing

1. [1 pt] What is the solution to the recurrence T(n) = 2T(n-1) + 1, T(1) = 1

Lecture 16 More on Hashing Collision Resolution

University of Toronto Department of Electrical and Computer Engineering. Midterm Examination. ECE 345 Algorithms and Data Structures Fall 2012

Standard ADTs. Lecture 19 CS2110 Summer 2009

III Data Structures. Dynamic sets

CS1020 Data Structures and Algorithms I Lecture Note #15. Hashing. For efficient look-up in a table

Today: Finish up hashing Sorted Dictionary ADT: Binary search, divide-and-conquer Recursive function and recurrence relation

Hash Open Indexing. Data Structures and Algorithms CSE 373 SP 18 - KASEY CHAMPION 1

Dictionaries and Hash Tables

Priority Queues and Heaps. More Data Structures. Priority Queue ADT ( 2.4.1) Total Order Relation. Sorting with a Priority Queue ( 2.4.

Topic HashTable and Table ADT

Topics on the Midterm

CMSC 341 Hashing. Based on slides from previous iterations of this course

Lecture 17. Improving open-addressing hashing. Brent s method. Ordered hashing CSE 100, UCSD: LEC 17. Page 1 of 19

Advanced Algorithmics (6EAP) MTAT Hashing. Jaak Vilo 2016 Fall

DATA STRUCTURES AND ALGORITHMS

BBM371& Data*Management. Lecture 6: Hash Tables

Hash Tables. Presentation for use with the textbook Algorithm Design and Applications, by M. T. Goodrich and R. Tamassia, Wiley, 2015.

CPSC 259 admin notes

Transcription:

Dictionaries and Hash Tables 0 1 2 3 025-612-0001 981-101-0002 4 451-229-0004 Dictionaries and Hash Tables 1

Dictionary ADT The dictionary ADT models a searchable collection of keyelement items The main operations of a dictionary are searching, inserting, and deleting items Multiple items with the same key are allowed Applications: address book credit card authorization mapping host names (e.g., cs16.net) to internet addresses (e.g., 128.148.34.101) Dictionary ADT methods: find(k): if the dictionary has an item with key k, returns the position of this element, else, returns a null position. insertitem(k, o): inserts item (k, o) into the dictionary removeelement(k): if the dictionary has an item with key k, removes it from the dictionary and returns its element. An error occurs if there is no such element. size(), isempty() keys(), Elements() Dictionaries and Hash Tables 2

Log File A log file is a dictionary implemented by means of an unsorted sequence We store the items of the dictionary in a sequence (based on a doubly-linked lists or a circular array), in arbitrary order Performance: insertitem takes O(1) time since we can insert the new item at the beginning or at the end of the sequence find and removeelement take O(n) time since in the worst case (the item is not found) we traverse the entire sequence to look for an item with the given key The log file is effective only for dictionaries of small size or for dictionaries on which insertions are the most common operations, while searches and removals are rarely performed (e.g., historical record of logins to a workstation) Dictionaries and Hash Tables 3

Hash Functions and Hash Tables 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 When implementing a dictionary with a hash table, the goal is to store item (k, o) at index i = h(k) Dictionaries and Hash Tables 4

Example We design a hash table for a dictionary storing items (SSN, Name), where SSN (social security number) 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 0 1 2 3 4 9997 9998 9999 025-612-0001 981-101-0002 451-229-0004 200-751-9998 Dictionaries and Hash Tables 5

Hash Functions Ideally, storage and access performance is O(1)! A hash function is usually specified as the composition of two functions: Hash code map: h 1 : keys integers Compression map: h 2 : integers [0, N - 1] The hash code map is applied first, and the compression map 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 uniform random way -- but it is not random! Dictionaries and Hash Tables 6

Example Hash Code Maps Memory address: We reinterpret the memory address of the key object as an integer e.g., Data *ptr; int key = (int)ptr; Good, but can do better for numeric and string keys Integer cast: We reinterpret the bits of the key as an integer e.g., J23 -> binary Suitable for keys of length less than or equal to the number of bits of the integer type (e.g., char, short, int and float) Component sum: We partition the bits of the key into components of fixed length (e.g., 16 or 32 bits) and we sum the components (ignoring overflows) e.g., example maps to 5+24+1+13+16+12+5 =76 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 on many machines) Dictionaries and Hash Tables 7

Example Hash Code Maps Polynomial accumulation: We partition the bits of the key into a sequence of components of fixed length (e.g., 8, 16 or 32 bits) some text = a 0 a 1 a n-1 We evaluate the polynomial p(z) = a 0 + a 1 z + a 2 z 2 + + a n-1 z n-1 at a fixed value z, ignoring overflows Especially suitable for strings (e.g., the choice z = 33 gives at most 6 collisions on a set of 50,000 English words) Polynomial p(z) can be evaluated in O(n) time using Horner s rule: The following polynomials are successively computed, each from the previous one in O(1) time p 0 (z) = a n-1 p i (z) = a n-i-1 + zp i-1 (z) (i = 1, 2,, n -1) We have p(z) = p n-1 (z) Dictionaries and Hash Tables 8

Example Encode Purdue using p(z) = a 0 + a 1 z + a 2 z 2 + + a n-1 z n-1 with z=33 Dictionaries and Hash Tables 9

ASCII table Dictionaries and Hash Tables 10

Alphabet position A=1 B=2 C=3 D=4 E=5 F=6 H=8 I=9 J=10 K=11 L=12 M=13 N=14 O=15 P=16 Q=17 R=18 S=19 T=20 U=21 V=22 W=23 X=24 Y=25 Z=26 G=7 Dictionaries and Hash Tables 11

Example Encode Purdue using p(z) = a 0 + a 1 z + a 2 z 2 + + a n-1 z n-1 with z=33 Using alphabet-position p(z) = 16+(21*33)+(18*33 2 )+(4*33 3 )+(21*33 4 )+(5*33 5 ) p(z) = 220,956,235 Dictionaries and Hash Tables 12

Example Compression Maps Division: h 2 (y) = y mod N Note: 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 Multiply, Add and Divide (MAD?): h 2 (y) = (ay + b) mod N a and b are nonnegative integers However, be careful choosing a and b Dictionaries and Hash Tables 13

Example Compression Maps Multiply, Add and Divide (MAD?): h 2 (y) = (ay + b) mod N Pick a=7, b=3, N=14 h 2 (0) = 3 h 2 (1) = 10 h 2 (2) = 3 h 2 (3) = 10 h 2 (4) = 3 Notice a pattern? Dictionaries and Hash Tables 14

Example Compression Maps Multiply, Add and Divide (MAD?): h 2 (y) = (ay + b) mod N Pick a and N such that (a mod N)!= 0 a=7, b=3, N=17 h 2 (0) = 3 h 2 (1) = 10 h 2 (2) = 0 h 2 (3) = 7 h 2 (4) = 14 Etc Dictionaries and Hash Tables 15

Example Compression Maps Multiply, Add and Divide (MAD?): h 2 (y) = (ay + b) mod N Pick N as prime Pick a and N such that (a mod N)!= 0 Recommendation: Pick a and b as prime numbers e.g. h 2 (y) = (7y +3) mod 13 h 2 (y) = (21y +17) mod 101 Dictionaries and Hash Tables 16

Collision Handling Collisions occur when different elements are mapped to same cell Chaining: each cell points to a linked list of elements Simple but requires additional memory outside the table 0 1 2 3 025-612-0001 4 451-229-0004 981-101-0004 Performance (briefly): InsertItem O(1) on average but can be O(N) in worst-case RemoveItem O(1) on average but can be O(N) in worst-case Dictionaries and Hash Tables 17

Example h(k) = k mod 6 A=1 B=2 C=3 D=4 E=5 F=6 H=8 I=9 J=10 K=11 L=12 M=13 N=14 O=15 P=16 Q=17 R=18 S=19 T=20 U=21 V=22 W=23 X=24 Y=25 Z=26 G=7 Dictionaries and Hash Tables 18

Alphabet position A=1 B=2 C=3 D=4 E=5 F=6 H=8 I=9 J=10 K=11 L=12 M=13 N=14 O=15 P=16 Q=17 R=18 S=19 T=20 U=21 V=22 W=23 X=24 Y=25 Z=26 G=7 Dictionaries and Hash Tables 19

Collision Handling So what can we do to keep the all data in the table? e.g., O(N) space Probing: try a different space in the table Must be repeatable Must find space fast Must support find/insert/remove Dictionaries and Hash Tables 20

Collision Handling Solution: when a collision for key k occurs at i, compute a new index i If i=h(k) is occupied Then, compute i =((i+f(j)) mod N) for attempt j Linear probing: e.g. f(j)=j Quadratic probing: e.g. f(j)=j 2 Double Hashing: e.g. f(j)=j(q-(k mod N)) compute another hash value Other schemes? Dictionaries and Hash Tables 21

Linear Probing Linear probing handles collisions by placing the colliding item in the next (circularly) available table cell e.g., i = (i+1) mod N Uses a concept called open addressing : the colliding item is placed in a different cell of the table Each table cell inspected is referred to as a probe Example: h(x) = x mod 13 Insert keys 18, 41, 22, 44, 59, 32, 31, 73, in this order 0 1 2 3 4 5 6 7 8 9 10 11 12 41 18 44 59 32 22 31 73 0 1 2 3 4 5 6 7 8 9 10 11 12 Dictionaries and Hash Tables 22

Search with Linear Probing Consider a hash table A that uses linear probing find(k) We start at cell h(k) We probe consecutive locations until one of the following three occurs An item with key k is found, or An empty cell is found, or N cells have been unsuccessfully probed Algorithm find(k) i h(k) p 0 repeat c A[i] if c = return Position(null) else if c.key () = k return Position(c) else i (i + 1) mod N p p + 1 until p = N return Position(null) Dictionaries and Hash Tables 23

Updates with Linear Probing Insertions and deletions are a little more complicated Example: h(x) = x mod 13 Keys 18, 41, 22, 44, 59, 32, 31, 73 were inserted in this order Let s remove 44 41 18 44 59 32 22 31 73 0 1 2 3 4 5 6 7 8 9 10 11 12 Dictionaries and Hash Tables 24

Updates with Linear Probing Insertions and deletions are a little more complicated So what can we do? Welcome to the world of special markers Example: h(x) = x mod 13 Keys 18, 41, 22, 44, 59, 32, 31, 73 were inserted in this order Let s remove 44 Let s search for 32 Slot 6=32 mod 13 is empty not found Oops! 41 18 59 32 22 31 73 0 1 2 3 4 5 6 7 8 9 10 11 12 Dictionaries and Hash Tables 25

Updates with Linear Probing Insertions and deletions are a little more complicated We introduce a special item, called AVAILABLE, which replaces deleted elements AVAILABLE!= empty Why do we need this special item? removeelement(k) We search for an item with key k If such an item (k, o) is found, we replace it with the special item AVAILABLE and we return the position of this item Else, we return a null position insertitem(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 item (k, o) in cell i Dictionaries and Hash Tables 26

Updates with Linear Probing Put A in slots of removed item Compute slot for 32, skip over A and search until empty or N cells Example: h(x) = x mod 13 Keys 18, 41, 22, 44, 59, 32, 31, 73 were inserted in this order Let s remove 44 Let s search for 32 Found at slot 8 Groovy! 41 18 44 A 59 32 22 31 73 0 1 2 3 4 5 6 7 8 9 10 11 12 Dictionaries and Hash Tables 27

Linear Probing Advantage: Relatively simple to implement Though special care must be taken to handle removals from the hash table Disadvantage: Upon successive collisions, items tend to clump together How can we overcome the above disadvantange? Dictionaries and Hash Tables 28

Quadratic Probing Handles collisions by placing the colliding item in i = (i+j 2 ) mod N for j=0,1,2, Similar find/insert/remove operations as with linear probing Collided items tend to be more distributed However: It might take lots of bouncing around the table to find an item (or empty slot) Dictionaries and Hash Tables 29

Double Hashing Double hashing uses a secondary hash function d(k) and handles collisions by placing an item in the first available cell of the series (i + jd(k)) mod N for j = 0, 1,, N - 1 The secondary hash function d(k) cannot have zero values The table size N must be a prime to allow probing of all the cells Common choice of compression map for the secondary hash function: d 2 (k) = q - (k mod q) where q < N q is a prime The possible values for d 2 (k) are 1, 2,, q Dictionaries and Hash Tables 30

Example of Double Hashing Consider a hash table storing integer keys that handles collision with double hashing N = 13 h(k) = k mod 13 d(k) = 7 - (k mod 7) Insert keys 18, 41, 22, 44, 59, 32, 31, 73, in this order k h (k ) d (k ) Probes 18 5 3 5 41 2 1 2 22 9 6 9 44 5 5 5 10 59 7 4 7 32 6 3 6 31 5 4 5 9 0 73 8 4 8 0 1 2 3 4 5 6 7 8 9 10 11 12 31 41 18 32 59 73 22 44 0 1 2 3 4 5 6 7 8 9 10 11 12 Dictionaries and Hash Tables 31

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 dictionary collide The load factor a = n/n affects the performance of a hash table Assuming that the hash values are like random numbers, typical insertion time is a *0.5 Dictionaries and Hash Tables 32

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 dictionary collide The load factor a = n/n affects the performance of a hash table Assuming that the hash values are like random numbers, typical insertion time is a *0.5 The expected running time of all the dictionary ADT operations in a hash table is O(1) In practice, hashing is very fast provided the load factor is not large Applications of hash tables: small databases compilers browser caches Dictionaries and Hash Tables 33

End Dictionaries and Hash Tables 34

Universal Hashing A family of hash functions is universal if, for any 0<i,j<M-1, Pr(h(j)=h(k)) < 1/N. Choose p as a prime between M and 2M. Randomly select 0<a<p and 0<b<p, and define h(k)=(ak+b mod p) mod N Theorem: The set of all functions, h, as defined here, is universal. Dictionaries and Hash Tables 35

Proof of Universality (Part 1) aj + Let f(k) = ak+b mod p Let g(k) = k mod N So h(k) = g(f(k)). f causes no collisions: Let f(k) = f(j). Suppose k<j. Then aj + b b - p p = ak ak + + b - p b p So a(j-k) is a multiple of p But both are less than p So a(j-k) = 0. i.e., j=k. (contradiction) Thus, f causes no collisions. a ( j - k ) = aj + p b - ak + p b p Dictionaries and Hash Tables 36

Proof of Universality (Part 2) If f causes no collisions, only g can make h cause collisions. Fix a number x. Of the p integers y=f(k), different from x, the number such that g(y)=g(x) is at most p / N - 1 Since there are p choices for x, the number of h s that will cause a collision between j and k is at most p ( p - 1) p ( p / N - 1) N There are p(p-1) functions h. So probability of collision is at most p( p - 1) / N 1 = p( p - 1) N Therefore, the set of possible h functions is universal. Dictionaries and Hash Tables 37