hashing
play

Hashing Chapter 5 1 Objectives Understand the idea of hashing - PowerPoint PPT Presentation

Hashing Chapter 5 1 Objectives Understand the idea of hashing Compare hashing to sorting Design a hashtable Identify the applications that require the hashtable data structure Understand the terminology of hashtables Distinguish between


  1. Hashing Chapter 5 1

  2. Objectives Understand the idea of hashing Compare hashing to sorting Design a hashtable Identify the applications that require the hashtable data structure Understand the terminology of hashtables Distinguish between the different implementations of hash tables 2

  3. Definition hash (verb | \ ’hæʃ \) In Merriam-Webster to chop (food, such as meat and potatoes) into small pieces confuse, muddle 3

  4. Why Hashing? Do we keep everything in an ascending order? How do you compare a pair of glasses to a book? 4

  5. Hashing You store something in a place When you want it back, you go and look for it where it is supposed to be A simple design: Keep your data elements in a big array of a fixed size so that each element has one fixed position What is good/bad about hashing? 5

  6. Hashtable ADT Initialize(n): Initializes an empty hashtable initially with n (empty) slots Insert(k, v): Stores the value v with the key k Contains?(k): Returns true if there is some value with the key k in the hashtable Retrieve(k): Retrieves the value with the key k Erase(k): Deletes the value with the key k Clear(): Removes all key-value pairs Size(): Returns number of elements Empty?(): Returns true if the hashtable is empty 6

  7. Elements of a Hashtable Hashtable Key Value K V Key-value pair Hash function Hash bucket 7

  8. Design Issues What is a good size for a hashtable? What are the good and bad properties of a hash function? Fast computation Dispersal (Scatters things around) Memoryless (A must) Examples of (bad) hash functions The initial of the last name The student ID modulo number of buckets 8

  9. A Simple Hashtable Key: State names Value: Population Key Value Capacity: 6 Hash function: Initial letter modulo capacity Insert(‘CA’, 40) 9

  10. A Simple Hashtable Key: State names Value: Population Key Value Capacity: 6 Hash function: Initial letter modulo capacity CA 40 Insert(‘CA’, 40) Insert(‘MN’, 5 ) 10

  11. A Simple Hashtable Key: State names Value: Population Key Value Capacity: 6 MN 5 Hash function: Initial letter modulo capacity CA 40 Insert(‘CA’, 40) Insert(‘MN’, 5 ) Insert(‘NY’, 8 ) 11

  12. A Simple Hashtable Key: State names Value: Population Key Value Capacity: 6 MN 5 Hash function: Initial NY 8 letter modulo capacity CA 40 Insert(‘CA’, 40) Insert(‘MN’, 5 ) Insert(‘NY’, 8 ) Insert(‘OK’, 4 ) 12

  13. Collision The biggest problem with hashtables is the collision problem Pigeonhole principle Birthday paradox Hashtables differ mainly on how collisions are handled 13

  14. Separate Chaining Hash 14

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend